Search Gradle plugins

io.github.DiLilloDaniele.gradle-python-testing

Plugin developed aiming at the automation of the testing process in a Python project. This plugin includes the possibility to specify the src and test folders of the project and perform tests and coverage using all the Python libraries (unittest and coverage modules). It is also supported to use Phython virtual environments.

https://github.com/DiLilloDaniele/gradle-python-testing

Sources: https://github.com/DiLilloDaniele/gradle-python-testing.git

Version 1.4.4 (latest)

1.4.4

Created 30 May 2023.

Plugin developed aiming at the automation of the testing process in a Python project. This plugin includes the possibility to specify the src and test folders of the project and perform tests and coverage using all the Python libraries (unittest and coverage modules). It is also supported to use Phython virtual environments.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.DiLilloDaniele.gradle-python-testing") version "1.4.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.DiLilloDaniele:gradle-python-testing:1.4.4")
      }
    }
    
    apply(plugin = "io.github.DiLilloDaniele.gradle-python-testing")
  • Applying plugins to all subprojects .