使用外部依赖项运行集成测试。摇动

时间:2020-08-10 15:15:06

标签: jenkins gradle testng

我是gradle工具的新手,得到了下一个项目。

  1. TestNG使用某些类进行测试,并用@Test注释。
  2. buid.gradle,那里有小脚本。
test {
    dependsOn cleanReports
    useTestNG() {
        suites 'src/test/resources/testng.xml'
        systemProperty "property1", System.getProperty("property1")
        systemProperty "property2", System.getProperty("property2")
        systemProperty "property3", System.getProperty("property3")

        listeners << 'listener.BuildReportExecutionListener'
        listeners << 'listener.TestResultListener'
    }
}

我想将这些测试发布到工件上,然后在Jenkins中对从工件上下载的jar文件使用渐变干净测试来运行特定的发行版。 我该怎么办?

1 个答案:

答案 0 :(得分:1)