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 bf52a78e89
commit c645fe6766
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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