Remove tests from the check task dependencies

This commit is contained in:
Username404-59 2021-04-27 16:41:23 +02:00
parent 3d1f95b275
commit f19de179b9
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 5 additions and 0 deletions

View File

@ -144,6 +144,11 @@ allprojects {
expand(modProperties)
}
}
check {
setDependsOn(
dependsOn.minus(test)
)
}
}
}