diff options
author | gbrandl <devnull@localhost> | 2007-07-07 10:36:37 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-07-07 10:36:37 +0200 |
commit | 8e90a320e6142292b0e5164476bacc6284204e6e (patch) | |
tree | eb93c9041b3d3dd636cb86f4b0ebcb50af9d71a3 /tests/run.py | |
parent | db3bdefe207add8cf1b26e626949d1e7dd6ef644 (diff) | |
download | pygments-8e90a320e6142292b0e5164476bacc6284204e6e.tar.gz |
[svn] Added gettext catalog lexer.
Diffstat (limited to 'tests/run.py')
-rw-r--r-- | tests/run.py | 7 |
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 |