diff options
-rwxr-xr-x | tests/runTests | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/runTests b/tests/runTests index fed58f75d..c44d36788 100755 --- a/tests/runTests +++ b/tests/runTests @@ -5,16 +5,16 @@ # $Id$ -import sys +import os, sys import os.path as osp -# Grab SVN portage files instead of normal ones. -sys.path.insert(0,'../pym') - # Insert our parent dir so we can do shiny import "tests" # This line courtesy of Marienz and Pkgcore ;) sys.path.insert(0, osp.dirname(osp.dirname(osp.abspath(__file__)))) +# Grab SVN portage files instead of normal ones. +sys.path.insert(0, os.path.join(sys.path[0], "pym")) + import tests if __name__ == "__main__": result = tests.main() |