Should this work for overriding which tests are ru...
# kotest
j
Should this work for overriding which tests are run by gradle when I run
./gradlew test
?
Copy code
test.doFirst {
    System.setProperty("kotest.tags", "Unit")
}
l
I'm not sure if this works, as Gradle doesn't propagate properties to the JVM that tests are ran in
IIRC there is a workaround to this
j
Hmmm it's close, but I'm actually wanting the default test target to disregard any command line tags so build doesn't run my integration tests