Skip to content

Commit

Permalink
Re-enable test mod
Browse files Browse the repository at this point in the history
  • Loading branch information
3TUSK committed Sep 7, 2023
1 parent 2447712 commit 65bac2c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion gradle/teacon-forge.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,15 @@ gradle.afterProject { Project current ->
property 'forge.enabledGameTestNamespaces', modId
mods {
// noinspection GroovyAssignabilityCheck
create(modId) { it.source sourceSets.main }
create(modId) {
it.source sourceSets.main
}
create(modId + "_test") {
it.source sourceSets.test
}

}

// noinspection GroovyAssignabilityCheck
runtimeLazyTokens.each { k, v -> lazyToken(k, v) }
}
Expand Down

0 comments on commit 65bac2c

Please sign in to comment.