Fix skipDockerIncompatibleTests (#240)

We have to add a check for the skipDockerIncompatibleTests property in the
fragileTest task, since that's where these tests now live.
This commit is contained in:
Michael Muller 2019-08-26 12:31:24 -04:00 committed by GitHub
parent 52a647c9a6
commit df97f935c5

View file

@ -563,6 +563,10 @@ task fragileTest(type: Test) {
exclude "**/*TestCase.*", "**/*TestSuite.*"
include fragileTestPatterns
if (rootProject.findProperty("skipDockerIncompatibleTests") == "true") {
exclude dockerIncompatibleTestPatterns
}
// Run every test class in a freshly started process.
forkEvery 1