Disable tests for modloader projects

This commit is contained in:
Cutiepie
2024-02-04 13:28:52 +11:00
parent 03c4926b09
commit a38551b3d0
+10
View File
@@ -134,6 +134,16 @@ subprojects { p ->
tasks.withType(GenerateModuleMetadata) {
enabled = false
}
// Disable testing for projects that isn't the core or api project
if (isMinecraftSubProject) {
test {
enabled = false
}
compileTestJava {
enabled = false
}
}
// Set the manifold version (may not be required tough)