summaryrefslogtreecommitdiff
path: root/tests/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run.py')
-rw-r--r--tests/run.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/run.py b/tests/run.py
index bb0110be..fb8b59dc 100644
--- a/tests/run.py
+++ b/tests/run.py
@@ -18,6 +18,8 @@ import __builtin__
from os.path import dirname, basename, join, abspath
+import pygments
+
try:
import coverage
except ImportError:
@@ -77,8 +79,9 @@ def run_tests(with_coverage=False):
WIDTH = 80
print >>sys.stderr, \
- ('Pygments Test Suite running%s, stand by...' %
- (with_coverage and " with coverage analysis" or "")).center(WIDTH)
+ ('Pygments %s Test Suite running%s, stand by...' %
+ (pygments.__version__,
+ with_coverage and " with coverage analysis" or "")).center(WIDTH)
print >>sys.stderr, ('(using Python %s)' % sys.version.split()[0]).center(WIDTH)
print >>sys.stderr, '='*WIDTH