This is an automated email from the ASF dual-hosted git repository. Amar3tto pushed a commit to branch fix-beaminference in repository https://gitbox.apache.org/repos/asf/beam.git
commit 87f8fbca9758fc19d387168e3e9dd01c71fd99e2 Author: Vitaly Terentyev <[email protected]> AuthorDate: Thu Jun 18 23:22:03 2026 +0400 fix --- sdks/python/apache_beam/testing/load_tests/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdks/python/apache_beam/testing/load_tests/build.gradle b/sdks/python/apache_beam/testing/load_tests/build.gradle index 73699e89c70..3249649d766 100644 --- a/sdks/python/apache_beam/testing/load_tests/build.gradle +++ b/sdks/python/apache_beam/testing/load_tests/build.gradle @@ -55,7 +55,7 @@ task run(type: Exec, dependsOn: installGcpTest) { exec { setWorkingDir "${project.rootDir}/sdks/python" executable 'sh' - args '-c', "${project.ext.envdir}/bin/python -m pip install -r ${requirementsTxtFileArg}" + args '-c', ". ${project.ext.envdir}/bin/activate && pip install -r ${requirementsTxtFileArg}" } } } @@ -72,4 +72,4 @@ task run(type: Exec, dependsOn: installGcpTest) { def parseOptions(String option) { option.replace('\"', '\\"') -} \ No newline at end of file +}
