You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by pa...@apache.org on 2019/05/06 17:20:44 UTC

[beam] branch master updated: [BEAM-7066] re-add python 3.6 and 3.7 precommit test suites

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

pabloem 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 cf767bb  [BEAM-7066] re-add python 3.6 and 3.7 precommit test suites
     new cbc2618  Merge pull request #8500 from Juta/it-tests
cf767bb is described below

commit cf767bb6470335840390a69681f6dd9f517a3e00
Author: Juta <ju...@gmail.com>
AuthorDate: Mon May 6 10:07:13 2019 +0200

    [BEAM-7066] re-add python 3.6 and 3.7 precommit test suites
---
 build.gradle                                  | 3 +--
 sdks/python/test-suites/tox/py36/build.gradle | 3 +--
 sdks/python/test-suites/tox/py37/build.gradle | 3 +--
 3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/build.gradle b/build.gradle
index 7daea0d..0b2128a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -188,8 +188,7 @@ task pythonPreCommit() {
   dependsOn ":beam-sdks-python:preCommitPy2"
   dependsOn ":beam-sdks-python-test-suites-tox-py35:preCommitPy35"
   dependsOn ":beam-sdks-python-test-suites-tox-py36:preCommitPy36"
-  // TODO(BEAM-7066): Enable once Python3.7-dev package is installed on all Jenkins nodes.
-  // dependsOn ":beam-sdks-python-test-suites-tox-py37:preCommitPy37"
+  dependsOn ":beam-sdks-python-test-suites-tox-py37:preCommitPy37"
   dependsOn ":beam-sdks-python-test-suites-dataflow:preCommitIT"
 }
 
diff --git a/sdks/python/test-suites/tox/py36/build.gradle b/sdks/python/test-suites/tox/py36/build.gradle
index 1f07ae3..649436f 100644
--- a/sdks/python/test-suites/tox/py36/build.gradle
+++ b/sdks/python/test-suites/tox/py36/build.gradle
@@ -42,6 +42,5 @@ testPy36Cython.mustRunAfter testPython36, testPy36Gcp
 task preCommitPy36() {
     dependsOn "testPython36"
     dependsOn "testPy36Gcp"
-    // TODO(BEAM-7066): Activate when Jenkins workers are updated with python3.6-dev
-    // dependsOn "testPy36Cython"
+    dependsOn "testPy36Cython"
 }
diff --git a/sdks/python/test-suites/tox/py37/build.gradle b/sdks/python/test-suites/tox/py37/build.gradle
index c63eb66..c6e862a 100644
--- a/sdks/python/test-suites/tox/py37/build.gradle
+++ b/sdks/python/test-suites/tox/py37/build.gradle
@@ -42,6 +42,5 @@ testPy37Cython.mustRunAfter testPython37, testPy37Gcp
 task preCommitPy37() {
     dependsOn "testPython37"
     dependsOn "testPy37Gcp"
-    // TODO(BEAM-7066): Activate when Jenkins workers are updated with python3.7-dev
-    // dependsOn "testPy37Cython"
+    dependsOn "testPy37Cython"
 }