diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-08-18 15:30:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-18 15:30:51 (GMT) |
commit | 92b1f90143286385c0ff5be98d3721b90580a912 (patch) | |
tree | 4d325da12b6dab4dc449c9e7cf2d49b802b0a5a8 /.travis.yml | |
parent | 4d3851727fb82195e4995c6064b0b2d6cbc031c4 (diff) | |
download | cpython-92b1f90143286385c0ff5be98d3721b90580a912.zip cpython-92b1f90143286385c0ff5be98d3721b90580a912.tar.gz cpython-92b1f90143286385c0ff5be98d3721b90580a912.tar.bz2 |
bpo-31231: Fix pythoninfo in Travis config (#3134)
bpo-31231, bpo-30871: Replace "./python -m test.pythoninfo" with
"make pythoninfo", since macOS uses ./python.exe.
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 4c43124..f6e9057 100644 --- a/.travis.yml +++ b/.travis.yml @@ -88,7 +88,7 @@ before_script: echo "$changes" exit 1 fi - ./python -m test.pythoninfo + make pythoninfo script: # Using the built Python as patchcheck.py is built around the idea of using |