From 8cb22aae089d34ebe1a4fe57db6bdebfb28e8812 Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Sun, 4 Aug 2024 22:54:48 +0200 Subject: [PATCH] Configure system property for conditional test execution Added a system property 'doNotRunDatabaseTests' in the test configuration to allow conditional skipping of database tests. This helps in running tests selectively during different build scenarios. --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 9457446..d098235 100644 --- a/build.gradle +++ b/build.gradle @@ -32,5 +32,6 @@ dependencies { } test { + systemProperty 'doNotRunDatabaseTests', System.getProperty('doNotRunDatabaseTests') useJUnitPlatform() } \ No newline at end of file