This is an automated email from the ASF dual-hosted git repository. damccorm pushed a commit to branch users/damccorm-repro-35816 in repository https://gitbox.apache.org/repos/asf/beam.git
commit ebee31449ec69ebc937aad36cffb9a5f08882b28 Author: Mohamed Awnallah <[email protected]> AuthorDate: Wed Sep 10 15:52:23 2025 +0000 test-suites/direct/common.gradle: remove milvus postcommit gradle hook --- sdks/python/test-suites/direct/common.gradle | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/sdks/python/test-suites/direct/common.gradle b/sdks/python/test-suites/direct/common.gradle index 3ca4591bc16..1dd15ecb09f 100644 --- a/sdks/python/test-suites/direct/common.gradle +++ b/sdks/python/test-suites/direct/common.gradle @@ -419,33 +419,6 @@ task feastIntegrationTest { } } -// Integration tests that require Docker-in-Docker capabilities. -// These tests are marked with the `require_docker_in_docker` pytest marker -// because they rely on Docker-in-Docker configurations that are not supported -// on Beam's self-hosted GitHub Actions runners. Docker-in-Docker works on -// ubuntu-latest GitHub-hosted runners but not on self-hosted environments due -// to containerization architecture differences. -// Context: https://github.com/apache/beam/pull/35585 -task dockerInDockerIntegrationTest { - dependsOn 'installGcpTest' - dependsOn ':sdks:python:sdist' - - doLast { - def testOpts = basicTestOpts - def argMap = [ - "test_opts": testOpts, - "suite": "postCommitIT-direct-py${pythonVersionSuffix}", - "collect": "require_docker_in_docker", - "runner": "TestDirectRunner", - ] - def cmdArgs = mapToArgString(argMap) - exec { - executable 'sh' - args '-c', ". ${envdir}/bin/activate && ${runScriptsDir}/run_integration_test.sh $cmdArgs" - } - } -} - // Add all the RunInference framework IT tests to this gradle task that runs on Direct Runner Post commit suite. project.tasks.register("inferencePostCommitIT") { dependsOn = [ @@ -456,7 +429,6 @@ project.tasks.register("inferencePostCommitIT") { 'transformersInferenceTest', 'testcontainersTest', 'feastIntegrationTest', - 'dockerInDockerIntegrationTest', // (TODO) https://github.com/apache/beam/issues/25799 // uncomment tfx bsl tests once tfx supports protobuf 4.x // 'tfxInferenceTest',
