From c6b1553a2b83c5e70fcb1a3a76e49ed496553a4e Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 31 Mar 2010 04:51:05 +0200 Subject: selftest: Make sure format-subunit and filter-subunit can find testtools/subunit. --- selftest/format-subunit | 3 +++ 1 file changed, 3 insertions(+) (limited to 'selftest/format-subunit') diff --git a/selftest/format-subunit b/selftest/format-subunit index 4e02f0f5d5..e590652cd1 100755 --- a/selftest/format-subunit +++ b/selftest/format-subunit @@ -11,6 +11,9 @@ import sys import subunithelper import subunit +sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../lib/subunit/python")) +sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../lib/testtools")) + class PlainFormatter(object): def __init__(self, summaryfile, verbose, immediate, statistics, -- cgit