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.
|
|
|
|
|
2009-01-03 04:57:07 -06:00
|
|
|
:copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
|
|
|
|
:license: BSD, see LICENSE for details.
|
2008-06-05 03:58:43 -05:00
|
|
|
"""
|
|
|
|
|
|
|
|
import sys
|
|
|
|
from os import path
|
|
|
|
|
|
|
|
# always test the sphinx package from this directory
|
|
|
|
sys.path.insert(0, path.join(path.dirname(__file__), path.pardir))
|
|
|
|
|
|
|
|
try:
|
|
|
|
import nose
|
|
|
|
except ImportError:
|
|
|
|
print "The nose package is needed to run the Sphinx test suite."
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
print "Running Sphinx test suite..."
|
|
|
|
nose.main()
|