Added configurable flag to continue on test failure so TC can perform complete test execution sweep.

This commit is contained in:
josecoll 2019-05-15 09:47:34 +01:00
parent 1a70646d02
commit b03b5133f6

View File

@ -279,6 +279,7 @@ allprojects {
tasks.withType(Test) {
useJUnitPlatform()
ignoreFailures = project.hasProperty('tests.ignoreFailures') ? project.property('tests.ignoreFailures').toBoolean() : false
failFast = project.hasProperty('tests.failFast') ? project.property('tests.failFast').toBoolean() : false
// Prevent the project from creating temporary files outside of the build directory.