Removed TestNG suites
This commit is contained in:
parent
cc6cd6aed3
commit
893d554136
3 changed files with 2 additions and 27 deletions
|
@ -88,7 +88,7 @@ dependencies {
|
||||||
|
|
||||||
test {
|
test {
|
||||||
useTestNG() {
|
useTestNG() {
|
||||||
suites('src/test/resources/testng-ci.xml')
|
excludeGroups('no-ci')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,9 +101,7 @@ tasks.withType(Test).configureEach {
|
||||||
|
|
||||||
|
|
||||||
task testAll(type: Test, group: 'verification', description: 'Run all tests.') {
|
task testAll(type: Test, group: 'verification', description: 'Run all tests.') {
|
||||||
useTestNG() {
|
useTestNG()
|
||||||
suites('src/test/resources/testng.xml')
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
java {
|
java {
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
|
|
||||||
<suite name="testng-ci">
|
|
||||||
<test name="ci">
|
|
||||||
<groups>
|
|
||||||
<run>
|
|
||||||
<exclude name="no-ci"/>
|
|
||||||
</run>
|
|
||||||
</groups>
|
|
||||||
<packages>
|
|
||||||
<package name="net.thauvin.erik.mobibot.*"/>
|
|
||||||
</packages>
|
|
||||||
</test>
|
|
||||||
</suite>
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
|
|
||||||
<suite name="testng">
|
|
||||||
<test name="all">
|
|
||||||
<packages>
|
|
||||||
<package name="net.thauvin.erik.mobibot.*"/>
|
|
||||||
</packages>
|
|
||||||
</test>
|
|
||||||
</suite>
|
|
Loading…
Add table
Add a link
Reference in a new issue