diff options
Diffstat (limited to 'tests/common.py')
-rw-r--r-- | tests/common.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/common.py b/tests/common.py index d0ff439..8568635 100644 --- a/tests/common.py +++ b/tests/common.py @@ -9,6 +9,7 @@ def importModules(buildDir, srcDir): sys.path.insert(0, srcDir) sys.path.insert(0, buildDir) sys.path.insert(0, os.path.join(buildDir, 'gobject')) + sys.path.insert(0, os.path.join(buildDir, 'gio')) import ltihooks # testhelper @@ -17,6 +18,7 @@ def importModules(buildDir, srcDir): testhelper = importModule('testhelper', '.') gobject = importModule('gobject', buildDir, 'gobject') + gio = importModule('gio', buildDir, 'gio') ltihooks.uninstall() del ltihooks |