Open SheliakLyr opened 5 months ago
Given test with a tag:
test("test", RequiresTestContainers) { // test case }
And the following configuration in build.gradle:
useJUnitPlatform { includeEngines 'scalatest' testLogging { events "skipped", "failed" } excludeTags 'RequiresTestContainers' }
I expect the task to not be run. This works with testRuntimeOnly "co.helmethair:scalatest-junit-runner:0.2.0" but not for this integration.
testRuntimeOnly "co.helmethair:scalatest-junit-runner:0.2.0"
Given test with a tag:
And the following configuration in build.gradle:
I expect the task to not be run. This works with
testRuntimeOnly "co.helmethair:scalatest-junit-runner:0.2.0"
but not for this integration.