diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-09-13 12:17:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-13 12:17:27 (GMT) |
commit | a7b3bc554c6fdc868accc1480038712c74354b42 (patch) | |
tree | 91e1ef597ad42c338880a7692cd7a59103827696 /.travis.yml | |
parent | d403a29c0055de6b03ed5ae7a5c564e1c95a5950 (diff) | |
download | cpython-a7b3bc554c6fdc868accc1480038712c74354b42.zip cpython-a7b3bc554c6fdc868accc1480038712c74354b42.tar.gz cpython-a7b3bc554c6fdc868accc1480038712c74354b42.tar.bz2 |
Travis CI: run coverage test using --fail-env-changed (#3541)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 148c0eb..2e0ad87 100644 --- a/.travis.yml +++ b/.travis.yml @@ -56,7 +56,7 @@ matrix: ./venv/bin/python -m test.pythoninfo script: # Skip tests that re-run the entire test suite. - - ./venv/bin/python -m coverage run --pylib -m test -uall,-cpu -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_multiprocessing_spawn + - ./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 after_script: # Probably should be after_success once test suite updated to run under coverage.py. # Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files. - source ./venv/bin/activate |