diff options
author | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
---|---|---|
committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
commit | 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch) | |
tree | 87a171383266dd1f64196589af081bc2f8e497c3 /tests/run.py | |
parent | f1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff) | |
download | pygments-master.tar.gz |
Diffstat (limited to 'tests/run.py')
-rw-r--r-- | tests/run.py | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/tests/run.py b/tests/run.py deleted file mode 100644 index edebc7a1..00000000 --- a/tests/run.py +++ /dev/null @@ -1,58 +0,0 @@ -# -*- coding: utf-8 -*- -""" - Pygments unit tests - ~~~~~~~~~~~~~~~~~~ - - Usage:: - - python run.py [testfile ...] - - - :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -from __future__ import print_function - -import os -import sys -import warnings - -# only find tests in this directory -if os.path.dirname(__file__): - os.chdir(os.path.dirname(__file__)) - -# make FutureWarnings (coming from Regex syntax most likely) and -# DeprecationWarnings due to non-raw strings an error -warnings.filterwarnings("error", module=r"pygments\..*", - category=FutureWarning) -warnings.filterwarnings("error", module=r".*pygments.*", - category=DeprecationWarning) - - -try: - import nose -except ImportError: - print('nose is required to run the Pygments test suite') - sys.exit(1) - -# make sure the current source is first on sys.path -sys.path.insert(0, '..') - -if '--with-coverage' not in sys.argv: - # if running with coverage, pygments should not be imported before coverage - # is started, otherwise it will count already executed lines as uncovered - try: - import pygments - except ImportError as err: - print('Cannot find Pygments to test: %s' % err) - sys.exit(1) - else: - print('Pygments %s test suite running (Python %s)...' % - (pygments.__version__, sys.version.split()[0]), - file=sys.stderr) -else: - print('Pygments test suite running (Python %s)...' % sys.version.split()[0], - file=sys.stderr) - -nose.main() |