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.
This commit is contained in:
Teriuihi 2024-08-04 22:54:48 +02:00
parent 405c2a73bd
commit 8cb22aae08

View File

@ -32,5 +32,6 @@ dependencies {
}
test {
systemProperty 'doNotRunDatabaseTests', System.getProperty('doNotRunDatabaseTests')
useJUnitPlatform()
}