2008-06-05 03:58:43 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
Sphinx unit test driver
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
This script runs the Sphinx unit test suite.
|
|
|
|
|
2010-01-01 07:09:13 -06:00
|
|
|
:copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
|
2009-01-03 04:57:07 -06:00
|
|
|
:license: BSD, see LICENSE for details.
|
2008-06-05 03:58:43 -05:00
|
|
|
"""
|
|
|
|
|
|
|
|
import sys
|
2010-05-08 17:38:16 -05:00
|
|
|
from os import path, chdir
|
|
|
|
|
|
|
|
if sys.version_info >= (3,):
|
|
|
|
print('Copying and converting sources to build/lib/test...')
|
|
|
|
from distutils.util import copydir_run_2to3
|
|
|
|
testroot = path.dirname(__file__) or '.'
|
|
|
|
newroot = path.join(testroot, path.pardir, 'build', 'lib', 'test')
|
|
|
|
copydir_run_2to3(testroot, newroot)
|
|
|
|
# switch to the converted dir so nose tests the right tests
|
|
|
|
chdir(newroot)
|
2008-06-05 03:58:43 -05:00
|
|
|
|
|
|
|
# always test the sphinx package from this directory
|
|
|
|
sys.path.insert(0, path.join(path.dirname(__file__), path.pardir))
|
|
|
|
|
|
|
|
try:
|
|
|
|
import nose
|
|
|
|
except ImportError:
|
2010-05-08 17:38:16 -05:00
|
|
|
print("The nose package is needed to run the Sphinx test suite.")
|
2008-06-05 03:58:43 -05:00
|
|
|
sys.exit(1)
|
|
|
|
|
2010-05-08 17:38:16 -05:00
|
|
|
print("Running Sphinx test suite...")
|
2008-06-05 03:58:43 -05:00
|
|
|
nose.main()
|