fix(build): disable cache for core tests to allow reruns (#2283)

This commit is contained in:
Skylot
2024-09-20 21:44:55 +01:00
parent ef4f1d3ed4
commit 1d34328dd3
+4
View File
@@ -26,4 +26,8 @@ dependencies {
tasks.test {
exclude("**/tmp/*")
// disable cache to allow test's rerun,
// because most tests are integration and depends on plugins and environment
outputs.cacheIf { false }
}