Search Gradle plugins

Detects changes in the current branch and runs only the tests relevant to those changes. Zero config, CI-friendly, multi-module support.

https://github.com/vedanthvdev/affected-tests

Sources: https://github.com/vedanthvdev/affected-tests.git

Version 1.9.5

Created 17 April 2026.

Detects changes in the current branch and runs only the tests relevant to those changes. Zero config, CI-friendly, multi-module support.

Gradle features compatibility:
Configuration cache ×

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.vedanthvdev.affectedtests") version "1.9.5"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.github.vedanthvdev.affectedtests:io.github.vedanthvdev.affectedtests.gradle.plugin:1.9.5")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.vedanthvdev.affectedtests")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.vedanthvdev.affectedtests:io.github.vedanthvdev.affectedtests.gradle.plugin:1.9.5")
      }
    }
    
    apply(plugin = "io.github.vedanthvdev.affectedtests")
  • Applying plugins to all subprojects .