搜索 Gradle 插件

io.github.DiLilloDaniele.gradle-python-testing

所有者: Daniele Di Lillo

此插件致力于自动化 Python 项目的测试过程。此插件包括指定项目的 src 和测试文件夹,并使用所有 Python 库(unittest 和 coverage 模块)执行测试和覆盖率。还支持使用 Phython 虚拟环境。

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

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

版本 1.4.4(最新版本)

1.4.4

创建于 2023 年 5 月 30 日。

此插件致力于自动化 Python 项目的测试过程。此插件包括指定项目的 src 和测试文件夹,并使用所有 Python 库(unittest 和 coverage 模块)执行测试和覆盖率。还支持使用 Phython 虚拟环境。

使用 plugins DSL

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

使用 旧插件应用

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

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

使用 plugins DSL

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

使用 旧插件应用

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

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

了解如何应用插件到子项目