1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Exclude tests that crash on TeamCity.

This commit is contained in:
Cedric Beust 2017-03-21 14:38:43 -07:00
parent da3ad60423
commit 34185a6b2a
2 changed files with 11 additions and 8 deletions

View file

@ -1,12 +1,15 @@
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="Kobalt" verbose="2">
<test name="Main">
<packages>
<package name="com.beust.kobalt.*"/>
</packages>
</test>
<test name="Main">
<groups>
<run>
<exclude name="mavenResolverBug"/>
</run>
</groups>
<packages>
<package name="com.beust.kobalt.*"/>
</packages>
</test>
</suite>