Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Log Python --version output for each executable.
  • Loading branch information
JoshRosen committed Jun 28, 2015
commit 9e31127b3253c66869e3354c73b51c6b9d3ccdd6
2 changes: 2 additions & 0 deletions python/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ def main():
for python_exec in python_execs:
python_implementation = subprocess.check_output(
[python_exec, "-c", "import platform; print(platform.python_implementation())"]).strip()
LOGGER.debug("`%s` version is: %s", python_exec, subprocess.check_output(
[python_exec, "--version"], stderr=subprocess.STDOUT).strip())
for module in modules_to_test:
if python_implementation not in module.blacklisted_python_implementations:
for test_goal in module.python_test_goals:
Expand Down