From d84ba4fc0a28b481229c57754deb3dcacf61ed93 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 10 Nov 2011 13:59:21 +0100 Subject: selftest: re-implement directory option for planpythontestsuite. --- selftest/selftesthelpers.py | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'selftest') diff --git a/selftest/selftesthelpers.py b/selftest/selftesthelpers.py index 085c62c466..c0b5d0d46c 100644 --- a/selftest/selftesthelpers.py +++ b/selftest/selftesthelpers.py @@ -158,10 +158,14 @@ def planperltestsuite(name, path): skiptestsuite(name, "Test::More not available") -def planpythontestsuite(env, module): - if has_system_subunit_run: - plantestsuite_idlist(module, env, [python, "-m", "subunit.run", "$LISTOPT", module]) - else: - plantestsuite_idlist(module, env, "PYTHONPATH=$PYTHONPATH:%s/lib/subunit/python:%s/lib/testtools %s -m subunit.run $LISTOPT %s" % (srcdir(), srcdir(), python, module)) - - +def planpythontestsuite(env, module, name=None, directory=None): + pypath = [] + if not has_system_subunit_run: + pypath.extend(["%s/lib/subunit/python" % srcdir(), + "%s/lib/testtools" % srcdir()]) + if directory is not None: + pypath.append(directory) + args = [python, "-m", "subunit.run", "$LISTOPT", module] + if pypath: + args.insert(0, "PYTHONPATH=%s" % ":".join(["$PYTHONPATH"] + pypath])) + plantestsuite_idlist(name, env, args) -- cgit