Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/tutorius/tests/run-tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/sugar/tutorius/tests/run-tests.py')
-rwxr-xr-xsrc/sugar/tutorius/tests/run-tests.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/sugar/tutorius/tests/run-tests.py b/src/sugar/tutorius/tests/run-tests.py
index db10c54..2af2afb 100755
--- a/src/sugar/tutorius/tests/run-tests.py
+++ b/src/sugar/tutorius/tests/run-tests.py
@@ -25,11 +25,14 @@ if __name__=='__main__':
import coretests
import servicestests
-
+ import gtkutilstests
+ import overlaytests
suite = unittest.TestSuite()
suite.addTests(unittest.findTestCases(coretests))
suite.addTests(unittest.findTestCases(servicestests))
+ suite.addTests(unittest.findTestCases(gtkutilstests))
+ suite.addTests(unittest.findTestCases(overlaytests))
runner = unittest.TextTestRunner()
runner.run(suite)
@@ -40,5 +43,7 @@ if __name__=='__main__':
else:
from coretests import *
from servicestests import *
+ from gtkutilstests import *
+ from overlaytests import *
unittest.main()