Skip to content

Commit

Permalink
Also log python_implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshRosen committed Jun 28, 2015
1 parent 9e31127 commit cd13db8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +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(
LOGGER.debug("%s python_implementation is %s", python_exec, python_implementation)
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:
Expand Down

0 comments on commit cd13db8

Please sign in to comment.