1
0
mirror of https://github.com/google/nomulus synced 2026-01-08 23:23:32 +00:00

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

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