diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-08-17 16:40:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-17 16:40:51 +0200 |
commit | b907abc88589f7bea52c5afe172ececc6edcda70 (patch) | |
tree | fe55661ea304aa81915f0e3b6d72a3a4b1f25a2e /.travis.yml | |
parent | 4a347ce426fe7381885703d9074d7a6b3aeb2f2b (diff) | |
download | cpython-git-b907abc88589f7bea52c5afe172ececc6edcda70.tar.gz |
bpo-30871: Add test.pythoninfo (#3075)
* Add Lib/test/pythoninfo.py: script collecting various informations
about Python to help debugging test failures.
* regrtest: remove sys.hash_info and sys.flags from header.
* Travis CI, Appveyor: run pythoninfo before tests
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index ba1e417c63..4c43124168 100644 --- a/.travis.yml +++ b/.travis.yml @@ -60,6 +60,7 @@ matrix: # Need a venv that can parse covered code. ./python -m venv venv ./venv/bin/python -m pip install -U coverage + ./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 @@ -87,6 +88,7 @@ before_script: echo "$changes" exit 1 fi + ./python -m test.pythoninfo script: # Using the built Python as patchcheck.py is built around the idea of using |