##// END OF EJS Templates
run-tests: include testdir in $PATH so tests easily can use helper tools...
Mads Kiilerich -
r23859:661b246b default
parent child Browse files
Show More
@@ -1644,7 +1644,8 b' class TestRunner(object):'
1644 1644 os.environ["BINDIR"] = self._bindir
1645 1645 os.environ["PYTHON"] = PYTHON
1646 1646
1647 path = [self._bindir] + os.environ["PATH"].split(os.pathsep)
1647 runtestdir = os.path.abspath(os.path.dirname(__file__))
1648 path = [self._bindir, runtestdir] + os.environ["PATH"].split(os.pathsep)
1648 1649 if self._tmpbindir != self._bindir:
1649 1650 path = [self._tmpbindir] + path
1650 1651 os.environ["PATH"] = os.pathsep.join(path)
@@ -1653,8 +1654,7 b' class TestRunner(object):'
1653 1654 # can run .../tests/run-tests.py test-foo where test-foo
1654 1655 # adds an extension to HGRC. Also include run-test.py directory to
1655 1656 # import modules like heredoctest.
1656 pypath = [self._pythondir, self._testdir,
1657 os.path.abspath(os.path.dirname(__file__))]
1657 pypath = [self._pythondir, self._testdir, runtestdir]
1658 1658 # We have to augment PYTHONPATH, rather than simply replacing
1659 1659 # it, in case external libraries are only available via current
1660 1660 # PYTHONPATH. (In particular, the Subversion bindings on OS X
General Comments 0
You need to be logged in to leave comments. Login now