Skip to content

Commit dbe3f48

Browse files
committed
Fix test masks for snapshot builds
1 parent 4398350 commit dbe3f48

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,11 @@ if (build_snapshot_train) {
138138
println "Hacking test tasks, removing stress and flaky tests"
139139
allprojects {
140140
tasks.withType(Test).all {
141-
exclude '**/*LinearizabilityTest*.*'
142-
exclude '**/*LFTest.*'
143-
exclude '**/*StressTest.*'
144-
exclude '**/*scheduler.*'
145-
exclude '**/*Timeout.*'
141+
exclude '**/*LinearizabilityTest*'
142+
exclude '**/*LFTest*'
143+
exclude '**/*StressTest*'
144+
exclude '**/*scheduling*'
145+
exclude '**/*Timeout*'
146146
}
147147
}
148148
}

0 commit comments

Comments
 (0)