summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorjquast <contact@jeffquast.com>2013-09-22 16:31:13 -0700
committerjquast <contact@jeffquast.com>2013-09-22 16:31:13 -0700
commit6ddd51b5ca625b1bf881ef8faf827a0c462f03cd (patch)
treec61397f72135d0ab9ead2a6d8a6231fb7b62a158 /tools
parent36d6f3b8026eccfce8ae541a659b44dcfa553c87 (diff)
downloadpexpect-git-6ddd51b5ca625b1bf881ef8faf827a0c462f03cd.tar.gz
display python interpreter version in testall.py
Diffstat (limited to 'tools')
-rwxr-xr-xtools/testall.py4
1 files changed, 3 insertions, 1 deletions
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'.