Skip to content

Commit

Permalink
Disable remote execution of unit tests temporarily. (#8138)
Browse files Browse the repository at this point in the history
### Problem

Remote execution of unit tests under v2 began failing on Thursday afternoon.

### Solution

Disable remote execution until #8137 can be resolved.
  • Loading branch information
stuhood committed Aug 2, 2019
1 parent 515010f commit d1c418b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Expand Up @@ -731,7 +731,8 @@ matrix:
- *py37_linux_test_config_env
- CACHE_NAME=unit_tests.v2.py37
script:
- travis_wait 50 ./build-support/bin/ci.py --python-tests-v2 --remote-execution-enabled --python-version 3.7
# TODO: Remote execution disabled (by removing `--remote-execution-enabled`) due to #8137.
- travis_wait 50 ./build-support/bin/ci.py --python-tests-v2 --python-version 3.7

- <<: *py36_lint
- <<: *py37_lint
Expand All @@ -745,7 +746,8 @@ matrix:
- *py36_linux_test_config_env
- CACHE_NAME=unit_tests.v2.py36
script:
- travis_wait 50 ./build-support/bin/ci.py --python-tests-v2 --remote-execution-enabled
# TODO: Remote execution disabled (by removing `--remote-execution-enabled`) due to #8137.
- travis_wait 50 ./build-support/bin/ci.py --python-tests-v2

- <<: *py36_linux_test_config
name: "Unit tests - V1 test runner (Py3.6 PEX)"
Expand Down
6 changes: 4 additions & 2 deletions build-support/travis/travis.yml.mustache
Expand Up @@ -678,7 +678,8 @@ matrix:
- *py37_linux_test_config_env
- CACHE_NAME=unit_tests.v2.py37
script:
- travis_wait 50 ./build-support/bin/ci.py --python-tests-v2 --remote-execution-enabled --python-version 3.7
# TODO: Remote execution disabled (by removing `--remote-execution-enabled`) due to #8137.
- travis_wait 50 ./build-support/bin/ci.py --python-tests-v2 --python-version 3.7

- <<: *py36_lint
- <<: *py37_lint
Expand All @@ -692,7 +693,8 @@ matrix:
- *py36_linux_test_config_env
- CACHE_NAME=unit_tests.v2.py36
script:
- travis_wait 50 ./build-support/bin/ci.py --python-tests-v2 --remote-execution-enabled
# TODO: Remote execution disabled (by removing `--remote-execution-enabled`) due to #8137.
- travis_wait 50 ./build-support/bin/ci.py --python-tests-v2

- <<: *py36_linux_test_config
name: "Unit tests - V1 test runner (Py3.6 PEX)"
Expand Down

0 comments on commit d1c418b

Please sign in to comment.