Is it known that in 7.6.4 this is not really working and maybe even fixed in 8.x?
Copy code
val test by existing(JvmTestSuite::class)
val functionalTest by registering(JvmTestSuite::class) {
targets.configureEach {
testTask {
shouldRunAfter(test)
}
}
}