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:
authormike <michael.jmontcalm@gmail.com>2009-03-20 04:56:30 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-03-20 04:56:30 (GMT)
commit89080dd1cbc682f77ca05ee5c81bfb75935ad5ef (patch)
tree4b398ccc605624807410a809d637f79e7ab53a6a /src/sugar/tutorius/tests/run-tests.py
parentc9f5b6ad86fa1e5e0d7cd5a3418188092141f73b (diff)
parentf7096e5742ff6d6c7031fb7320584d5e712f70dc (diff)
Merge branch 'tutorial_toolkit' into mike
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()