[Python-checkins] bpo-31231: Fix pythoninfo in Travis config (#3134)

Victor Stinner webhook-mailer at python.org
Fri Aug 18 11:30:55 EDT 2017


https://github.com/python/cpython/commit/92b1f90143286385c0ff5be98d3721b90580a912
commit: 92b1f90143286385c0ff5be98d3721b90580a912
branch: master
author: Victor Stinner <victor.stinner at gmail.com>
committer: GitHub <noreply at github.com>
date: 2017-08-18T17:30:51+02:00
summary:

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.

files:
M .travis.yml

diff --git a/.travis.yml b/.travis.yml
index 4c431241680..f6e9057e28d 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



More information about the Python-checkins mailing list