Switch off smoke tests by default in IDE

The Maven build now sets a System property smoke.test=true. The tests
are skipped if this is not set, so by default the IDE will not run them.
This commit is contained in:
Dave Syer
2016-09-26 16:54:25 +01:00
parent c702be0260
commit 712003b436
2 changed files with 8 additions and 4 deletions

View File

@@ -136,6 +136,9 @@
<goal>test</goal>
</goals>
<configuration>
<systemProperties>
<smoke.test>true</smoke.test>
</systemProperties>
<includes>
<include>**/*SmokeTests.java</include>
</includes>