We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 627f8e7 + 45b5f4a commit f51979eCopy full SHA for f51979e
ant/bc+-build.xml
@@ -990,6 +990,7 @@
990
<batchtest todir="${artifacts.reports.xml.dir}" unless="testcase">
991
<fileset dir="${test.target.src.dir}">
992
<include name="**/AllTests.java" />
993
+ <exclude name="${env.JUNIT_EXCLUDE_TESTS}" if="env.JUNIT_EXCLUDE_TESTS" />
994
</fileset>
995
</batchtest>
996
</junit>
build.gradle
@@ -190,6 +190,9 @@ subprojects {
190
191
filter {
192
includeTestsMatching "AllTest*"
193
+ if (project.hasProperty('excludeTests')) {
194
+ excludeTestsMatching "${excludeTests}"
195
+ }
196
}
197
198
0 commit comments