Skip to content
Snippets Groups Projects
Commit c0bcd595 authored by dgelessus's avatar dgelessus
Browse files

Fix grouping of test based on whether they use public_examples

regressionTests now runs only the tests that require public_examples and
test only runs those that don't use public_examples. Previously,
regressionTests ran all tests again, and CoverageTest was in the wrong
package (it requires public_examples).
parent 867ba810
No related branches found
No related tags found
No related merge requests found
......@@ -102,9 +102,7 @@ clean {
task regressionTests(dependsOn: extractPublicExamples, type: Test){
doFirst{ println("Running integration tests") }
scanForTestClasses = true
//include('de/tlc4b/tlc/integration/probprivate/**')
include('de/tlc4b/**')
include('de/tlc4b/tlc/integration/probprivate/**')
}
check.dependsOn(regressionTests)
......
package de.tlc4b.coverage;
package de.tlc4b.tlc.integration.probprivate;
import java.io.File;
import java.util.ArrayList;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment