This is an automated email from the ASF dual-hosted git repository.
mxm pushed a commit to branch release-2.10.0
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/release-2.10.0 by this push:
new 36ec5f4 Install Beam test dependencies in Flink compatibility tests
36ec5f4 is described below
commit 36ec5f4728e09e7eca88f327a3a0bcc87d175a6e
Author: tvalentyn <[email protected]>
AuthorDate: Fri Jan 18 16:20:10 2019 -0800
Install Beam test dependencies in Flink compatibility tests
---
sdks/python/build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sdks/python/build.gradle b/sdks/python/build.gradle
index 860301e..ff9a22b 100644
--- a/sdks/python/build.gradle
+++ b/sdks/python/build.gradle
@@ -346,7 +346,7 @@ def flinkCompatibilityMatrix = {
doLast {
exec {
executable 'sh'
- args '-c', ". ${project.ext.envdir}/bin/activate && pip install -e .
&& python -m apache_beam.runners.portability.flink_runner_test
--flink_job_server_jar=${project(":beam-runners-flink_2.11-job-server:").shadowJar.archivePath}
--environment_type=${workerType} ${environment_config} ${streaming ?
'--streaming' : ''}"
+ args '-c', ". ${project.ext.envdir}/bin/activate && pip install -e
.[test] && python -m apache_beam.runners.portability.flink_runner_test
--flink_job_server_jar=${project(":beam-runners-flink_2.11-job-server:").shadowJar.archivePath}
--environment_type=${workerType} ${environment_config} ${streaming ?
'--streaming' : ''}"
}
}
}