[build] Disable armsimulation unit test (#5739)

This test regularly fails on Win64Debug in CI.
This commit is contained in:
Peter Johnson
2023-10-09 20:11:51 -07:00
committed by GitHub
parent fb07b0da49
commit 58e8474368

View File

@@ -185,6 +185,10 @@ model {
testTask.useJUnitPlatform()
testTask.filter {
includeTestsMatching("edu.wpi.first.wpilibj.examples.${entry.foldername}.*")
// armsimulation regularly fails on CI Win64Debug
if (project.hasProperty('ciDebugOnly')) {
excludeTestsMatching("edu.wpi.first.wpilibj.examples.armsimulation.*")
}
setFailOnNoMatchingTests(false)
}
test.filter {