You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by mx...@apache.org on 2019/01/19 15:35:41 UTC

[beam] branch master updated: Install Beam test dependencies in Flink compatibility tests

This is an automated email from the ASF dual-hosted git repository.

mxm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 4ce789b  Install Beam test dependencies in Flink compatibility tests
     new 7b9fd01  Merge pull request #7576: [BEAM-6469] Install Beam test dependencies in Flink compatibility tests
4ce789b is described below

commit 4ce789bfa711dea52983e88fe725fd1c5ad947d9
Author: tvalentyn <tv...@users.noreply.github.com>
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' : ''}"
       }
     }
   }