From 6ddd51b5ca625b1bf881ef8faf827a0c462f03cd Mon Sep 17 00:00:00 2001 From: jquast Date: Sun, 22 Sep 2013 16:31:13 -0700 Subject: display python interpreter version in testall.py --- tools/testall.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/testall.py b/tools/testall.py index 49263a5..833abfa 100755 --- a/tools/testall.py +++ b/tools/testall.py @@ -32,9 +32,11 @@ from __future__ import print_function import unittest import os, os.path import sys +import platform import pexpect -print("Testing pexpect version:", pexpect.__version__) +print("Testing pexpect %s using python %s:" % ( + pexpect.__version__, platform.python_version())) def add_tests_to_list (import_list, dirname, names): # Only check directories named 'tests'. -- cgit v1.2.1