This is an automated email from the ASF dual-hosted git repository.
markliu 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 282df6e Disable Py37 tox suite to reduce test flakiness.
new 07320c3 Merge pull request #8292 from tvalentyn/disable_py37
282df6e is described below
commit 282df6e47ae74bed55bd0d59359a77132bd364f6
Author: Valentyn Tymofieiev <[email protected]>
AuthorDate: Fri Apr 12 10:08:18 2019 -0700
Disable Py37 tox suite to reduce test flakiness.
---
build.gradle | 3 ++-
sdks/python/test-suites/tox/py36/build.gradle | 2 +-
sdks/python/test-suites/tox/py37/build.gradle | 2 +-
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/build.gradle b/build.gradle
index ce1eaed..df3b28c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -188,7 +188,8 @@ 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"
- dependsOn ":beam-sdks-python-test-suites-tox-py37:preCommitPy37"
+ // 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-dataflow:preCommitIT"
}
diff --git a/sdks/python/test-suites/tox/py36/build.gradle
b/sdks/python/test-suites/tox/py36/build.gradle
index 09a8764..1f07ae3 100644
--- a/sdks/python/test-suites/tox/py36/build.gradle
+++ b/sdks/python/test-suites/tox/py36/build.gradle
@@ -42,6 +42,6 @@ testPy36Cython.mustRunAfter testPython36, testPy36Gcp
task preCommitPy36() {
dependsOn "testPython36"
dependsOn "testPy36Gcp"
- // TODO: Activate when Jenkins workers are updated with python3.6-dev
+ // TODO(BEAM-7066): Activate when Jenkins workers are updated with
python3.6-dev
// dependsOn "testPy36Cython"
}
diff --git a/sdks/python/test-suites/tox/py37/build.gradle
b/sdks/python/test-suites/tox/py37/build.gradle
index 7f19dc2..c63eb66 100644
--- a/sdks/python/test-suites/tox/py37/build.gradle
+++ b/sdks/python/test-suites/tox/py37/build.gradle
@@ -42,6 +42,6 @@ testPy37Cython.mustRunAfter testPython37, testPy37Gcp
task preCommitPy37() {
dependsOn "testPython37"
dependsOn "testPy37Gcp"
- // TODO: Activate when Jenkins workers are updated with python3.7-dev
+ // TODO(BEAM-7066): Activate when Jenkins workers are updated with
python3.7-dev
// dependsOn "testPy37Cython"
}