Index: ssts-web/build.gradle =================================================================== diff -u -r26154 -r26156 --- ssts-web/build.gradle (.../build.gradle) (revision 26154) +++ ssts-web/build.gradle (.../build.gradle) (revision 26156) @@ -35,10 +35,12 @@ '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=9009' } */ - + reports { + junitXml.enabled = true + } //ignoreFailures = true //use this to allow build to continue for CI purposes useJUnit() - + /* if (project.hasProperty("seleniumTests")){ filter { includeTestsMatching "test.forgon.disinfectsystem.selenium.ALL" @@ -48,6 +50,17 @@ exclude "test.forgon.disinfectsystem.selenium.ALL" exclude "test.forgon.disinfectsystem.selenium2.ALL" } + */ + + filter { + if (project.hasProperty("seleniumTests")){ + includeTestsMatching "test.forgon.disinfectsystem.selenium.ALL" + } + else{ + includeTestsMatching "test.forgon.tools.date.DateToolsTests" + } + } + //reports.html.enabled = false ignoreFailures = true //use this to allow build to continue for CI purposes