summaryrefslogtreecommitdiff
path: root/tests/run.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-11-01 17:38:22 +0100
committerGeorg Brandl <georg@python.org>2012-11-01 17:38:22 +0100
commitdee9ea0493d0c5eab1b9f4df0f9d3872ee457bd4 (patch)
tree66c237437aed8f942a5544e7b250c91168c324c0 /tests/run.py
parent7a7daf4e65e1c5737ecbd84280fcdb16a9e4cd08 (diff)
downloadsphinx-dee9ea0493d0c5eab1b9f4df0f9d3872ee457bd4.tar.gz
Fix running tests under Python 3 without tox.
Diffstat (limited to 'tests/run.py')
-rwxr-xr-xtests/run.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/run.py b/tests/run.py
index 8b3bf844..4cd4a766 100755
--- a/tests/run.py
+++ b/tests/run.py
@@ -18,14 +18,14 @@ if sys.version_info >= (3, 0):
from distutils.util import copydir_run_2to3
testroot = path.dirname(__file__) or '.'
if 'BUILD_TEST_PATH' in environ:
- # for tox test.
+ # for tox testing
newroot = environ['BUILD_TEST_PATH']
- # tox install sphinx package, not need sys.path.insert.
+ # tox installs the sphinx package, no need for sys.path.insert
else:
newroot = path.join(testroot, path.pardir, 'build')
newroot = path.join(newroot, listdir(newroot)[0], 'tests')
# always test the sphinx package from build/lib/
- sys.path.insert(0, path.join(newroot, path.pardir))
+ sys.path.insert(0, path.abspath(path.join(newroot, path.pardir)))
copydir_run_2to3(testroot, newroot)
# switch to the converted dir so nose tests the right tests
chdir(newroot)