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)

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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.DiLilloDaniele:gradle-python-testing:1.4.4")
  }
}

apply(plugin = "io.github.DiLilloDaniele.gradle-python-testing")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.DiLilloDaniele:gradle-python-testing:1.4.4"
  }
}

apply plugin: "io.github.DiLilloDaniele.gradle-python-testing"

Learn how to apply plugins to subprojects