diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-06-01 17:39:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-01 17:39:37 (GMT) |
commit | 137e80346ff65ad917f733d9b077e530a4797ec5 (patch) | |
tree | 60112c22197521a37c7c5e21d948b1e43508edd6 /.vsts | |
parent | f3297433e309e9591eaa3f36e1d7887e9d0620d7 (diff) | |
download | cpython-137e80346ff65ad917f733d9b077e530a4797ec5.zip cpython-137e80346ff65ad917f733d9b077e530a4797ec5.tar.gz cpython-137e80346ff65ad917f733d9b077e530a4797ec5.tar.bz2 |
bpo-33718: Update regrtest from master (GH-7325)
* Add support.environment_altered: unused yet
* VSTS: don't run tests with --fail-env-changed
Diffstat (limited to '.vsts')
-rw-r--r-- | .vsts/linux-coverage.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.vsts/linux-coverage.yml b/.vsts/linux-coverage.yml index 930c9c6..d16d9c9 100644 --- a/.vsts/linux-coverage.yml +++ b/.vsts/linux-coverage.yml @@ -63,7 +63,7 @@ steps: - script: ./venv/bin/python -m test.pythoninfo displayName: 'Display build info' -- script: ./venv/bin/python -m coverage run --pylib -m test --fail-env-changed -uall,-cpu -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_multiprocessing_spawn -x test_concurrent_futures +- script: ./venv/bin/python -m coverage run --pylib -m test -uall,-cpu -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_multiprocessing_spawn -x test_concurrent_futures displayName: 'Tests with coverage' - script: source ./venv/bin/activate && bash <(curl -s https://codecov.io/bash) |