My `test` task is not running all my tests and I c...
# community-support
t
My
test
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
Copy code
# 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)
1
huh. One of the tests was failing and it was causing the whole suite to stop