Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ tasks.withType(JavaCompile).configureEach {
options.compilerArgs << "-Aquiet=true" // Suppress mixin notes
}

tasks.withType(Test).configureEach {
// Test sources are NeoForge GameTests and are executed by runGameTestServer, not JUnit.
failOnNoDiscoveredTests = false
}

lombok {
version = "1.18.38"
}
Expand Down Expand Up @@ -114,4 +119,4 @@ jacocoTestReport {
fileTree(dir: it, exclude: '**/mixins/**')
}))
}
}
}
Loading