Sha256: 2542174a42cdc4aac2e03f2da2930b683d77e68784b75e8d03564d739d30b61b

Contents?: true

Size: 1.22 KB

Versions: 5

Compression:

Stored size: 1.22 KB

Contents

# -*- coding: utf-8 -*-
"""
    Pygments unit tests
    ~~~~~~~~~~~~~~~~~~

    Usage::

        python run.py [testfile ...]


    :copyright: Copyright 2006-2011 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details.
"""

import sys, os

if sys.version_info >= (3,):
    # copy test suite over to "build/lib" and convert it
    print ('Copying and converting sources to build/lib/test...')
    from distutils.util import copydir_run_2to3
    testroot = os.path.dirname(__file__)
    newroot = os.path.join(testroot, '..', 'build/lib/test')
    copydir_run_2to3(testroot, newroot)
    # make nose believe that we run from the converted dir
    os.chdir(newroot)
else:
    # only find tests in this directory
    os.chdir(os.path.dirname(__file__))


try:
    import nose
except ImportError:
    print ('nose is required to run the Pygments test suite')
    sys.exit(1)

try:
    # make sure the current source is first on sys.path
    sys.path.insert(0, '..')
    import pygments
except ImportError:
    print ('Cannot find Pygments to test: %s' % sys.exc_info()[1])
    sys.exit(1)
else:
    print ('Pygments %s test suite running (Python %s)...' %
           (pygments.__version__, sys.version.split()[0]))

nose.main()

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pygments.rb-0.2.4 vendor/pygments-main/tests/run.py
pygments.rb-0.2.3 vendor/pygments-main/tests/run.py
pygments.rb-0.2.2 vendor/pygments-main/tests/run.py
pygments.rb-0.2.1 vendor/pygments-main/tests/run.py
pygments.rb-0.2.0 vendor/pygments-main/tests/run.py