From 1d34328dd3e7c5be8a6a6bc8d40cb3da78de0654 Mon Sep 17 00:00:00 2001 From: Skylot <118523+skylot@users.noreply.github.com> Date: Fri, 20 Sep 2024 21:44:55 +0100 Subject: [PATCH] fix(build): disable cache for core tests to allow reruns (#2283) --- jadx-core/build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jadx-core/build.gradle.kts b/jadx-core/build.gradle.kts index 7feb2180a..ccfd69a80 100644 --- a/jadx-core/build.gradle.kts +++ b/jadx-core/build.gradle.kts @@ -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 } }