mirror of
https://github.com/google/nomulus.git
synced 2025-05-29 08:50:09 +02: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:
parent
bf52a78e89
commit
c645fe6766
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue