From 41d30a83b501e5fc229aec602dd4fd5af5ea3cb0 Mon Sep 17 00:00:00 2001
From: Daniel Langbein <daniel@systemli.org>
Date: Sat, 29 Mar 2025 19:39:10 +0100
Subject: [PATCH] fix notify-change

---
 hosts/yodaNas/notify-change.nix | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hosts/yodaNas/notify-change.nix b/hosts/yodaNas/notify-change.nix
index 3b60b76..0d46f71 100644
--- a/hosts/yodaNas/notify-change.nix
+++ b/hosts/yodaNas/notify-change.nix
@@ -100,7 +100,8 @@ in
         cd "${fulldir}"
       fi
 
-      gradle :app:test --tests "de.p1st.changedetection.IliasFB12CoursesTest"
+      # --rerun: Execute test again even if code did not change
+      gradle :app:test --tests "de.p1st.changedetection.IliasFB12CoursesTest" --rerun
     '';
   };
 }