Disable DebugLineNumbersTest in CI tests.

This commit is contained in:
modmuss50
2024-02-03 23:25:06 +00:00
parent ac3fa8d410
commit f26c49c36f

View File

@@ -370,6 +370,11 @@ task writeActionsTestMatrix() {
return
}
if (it.name.endsWith("DebugLineNumbersTest.groovy")) {
// Known flakey test
return
}
def className = it.name.replace(".groovy", "")
testMatrix.add("net.fabricmc.loom.test.integration.${className}")
}