Skip to content

Commit

Permalink
Add proper mask for disable tests in train configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
qwwdfsad committed Jun 26, 2019
1 parent 2dc9b66 commit a43aa98
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -203,17 +203,15 @@ if (build_snapshot_train) {
println "Hacking test tasks, removing stress and flaky tests"
allprojects {
tasks.withType(Test).all {
exclude '*ServerSocketTest*'
exclude '*NettyStressTest*'
exclude '*CIOMultithreadedTest*'
exclude '*testBlockingConcurrency*'
exclude '*testBigFile*'
exclude '*numberTest*'
exclude '*testWithPause*'
exclude '*WebSocketTest*'
exclude '*testBigFile*'
exclude '*hugePost*'
exclude '*numberTest*'
exclude '**/*ServerSocketTest*'
exclude '**/*NettyStressTest*'
exclude '**/*CIOMultithreadedTest*'
exclude '**/*testBlockingConcurrency*'
exclude '**/*testBigFile*'
exclude '**/*numberTest*'
exclude '**/*testWithPause*'
exclude '**/*WebSocketTest*'
exclude '**/*hugePost*'
}
}

Expand Down

0 comments on commit a43aa98

Please sign in to comment.