This is an automated email from the ASF dual-hosted git repository. jonnybot pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy-geb.git
commit c7f2e96e419c464d70e3af41c43724330e71ed8e Author: Jonny Carter <[email protected]> AuthorDate: Tue Mar 24 13:51:33 2026 -0500 Fix integration test task to run and accept specific tests --- integration/geb-testcontainers/geb-testcontainers.gradle | 3 --- 1 file changed, 3 deletions(-) diff --git a/integration/geb-testcontainers/geb-testcontainers.gradle b/integration/geb-testcontainers/geb-testcontainers.gradle index daf9739b..11c18aa8 100644 --- a/integration/geb-testcontainers/geb-testcontainers.gradle +++ b/integration/geb-testcontainers/geb-testcontainers.gradle @@ -103,9 +103,6 @@ tasks.register('integrationTest', Test) { systemProperty('geb.env', System.getProperty('geb.env')) systemProperty('geb.container.recording.mode', 'RECORD_ALL') // also RECORD_FAILING // systemProperty('geb.container.recording.restartPerTest', 'false') // makes all recording the same - - dependsOn drivers.collect { tasks["${it}Test"] } - enabled = false } drivers.eachWithIndex { driver, index ->
