summaryrefslogtreecommitdiff
path: root/tests/runtests.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2005-01-10 16:25:46 +0000
committerJohan Dahlin <johan@src.gnome.org>2005-01-10 16:25:46 +0000
commit64e07ba0b2a4acb84f61e5688d3537f4a38e09e6 (patch)
tree9daa6194ea657c79cdf0580528bcbd57ed66a38b /tests/runtests.py
parentdc62a03bbc1b3a8271c24ca0887e7285a0ab4848 (diff)
downloadpygobject-64e07ba0b2a4acb84f61e5688d3537f4a38e09e6.tar.gz
Make testsuite work and do things the way they were supposed to be done
* tests/Makefile.am: * tests/common.py: * tests/runtests.py: * tests/test_thread.py: Make testsuite work and do things the way they were supposed to be done from the beginning.
Diffstat (limited to 'tests/runtests.py')
-rw-r--r--tests/runtests.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/runtests.py b/tests/runtests.py
index 83b6013b..b22ce2b9 100644
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -4,6 +4,13 @@ import os
import sys
import unittest
+import common
+
+buildDir = sys.argv[1]
+srcDir = sys.argv[2]
+common.importModules(buildDir=buildDir,
+ srcDir=srcDir)
+
SKIP_FILES = ['common', 'runtests']
dir = os.path.split(os.path.abspath(__file__))[0]