diff options
author | Thomas Moreau <thomas.moreau.2010@gmail.com> | 2017-10-03 09:53:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <pitrou@free.fr> | 2017-10-03 09:53:17 (GMT) |
commit | e8c368df22c344183627e7ef882bea1683fe6dbe (patch) | |
tree | 3023a6313e5eab67c87cf1ccfb3e13e8c524ea77 /.travis.yml | |
parent | efb560eee28b6b2418e1231573ca62574d6dc07b (diff) | |
download | cpython-e8c368df22c344183627e7ef882bea1683fe6dbe.zip cpython-e8c368df22c344183627e7ef882bea1683fe6dbe.tar.gz cpython-e8c368df22c344183627e7ef882bea1683fe6dbe.tar.bz2 |
bpo-31540: Allow passing multiprocessing context to ProcessPoolExecutor (#3682)
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 2e0ad87..1858460 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 --fail-env-changed -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 -x test_concurrent_futures 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 |