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 05:00:03 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-03-20 05:00:03 (GMT)
commit544cb24625991e73cb3414c1db3496c3a1f6021c (patch)
tree925b643d26e8bc325fea50228404bb2175f939ab /src/sugar/tutorius/tests/run-tests.py
parent89080dd1cbc682f77ca05ee5c81bfb75935ad5ef (diff)
TutoriusV2 : Integrating linear_creatortests with run_tests.py
Diffstat (limited to 'src/sugar/tutorius/tests/run-tests.py')
-rwxr-xr-xsrc/sugar/tutorius/tests/run-tests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sugar/tutorius/tests/run-tests.py b/src/sugar/tutorius/tests/run-tests.py
index 2af2afb..473e083 100755
--- a/src/sugar/tutorius/tests/run-tests.py
+++ b/src/sugar/tutorius/tests/run-tests.py
@@ -27,12 +27,14 @@ if __name__=='__main__':
import servicestests
import gtkutilstests
import overlaytests
+ import linear_creatortests
suite = unittest.TestSuite()
suite.addTests(unittest.findTestCases(coretests))
suite.addTests(unittest.findTestCases(servicestests))
suite.addTests(unittest.findTestCases(gtkutilstests))
suite.addTests(unittest.findTestCases(overlaytests))
+ suite.addTests(unittest.findTestCases(linear_creatortests))
runner = unittest.TextTestRunner()
runner.run(suite)