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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user