tony
09/18/2025, 10:03 PMtest task is not running all my tests and I cannot figure out why. I've run it with -i and -d and don't see anything in the logging. I've also used --rerun and --no-configuration-cache just in case there was something there. There is one test that gets run this way, but it ends up being SKIPPED for unclear reasons. If I use --tests Foo, then Foo test does run. I've never seen this before and I'm mystified.
I'm using junit5 and have the following dependencies, among others
# libs.versions.toml
junitEngine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junitJupiter" }
junitLauncher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junitPlatformLauncher" }
// build.gradle.kts
testRuntimeOnly(libs.junitEngine)
testRuntimeOnly(libs.junitLauncher)tony
09/18/2025, 10:11 PM