From 1853df8444bb46ce6885e7812a2295656ed6eee1 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 6 Jan 2013 21:33:59 +0100 Subject: [PATCH] Fixed the test script so it tests *all* the things. --- runtests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtests.py b/runtests.py index a24563c..58a3158 100755 --- a/runtests.py +++ b/runtests.py @@ -4,7 +4,7 @@ import generator import pylibcerebrum.test import unittest -suite = unittest.TestLoader().loadTestsFromModule(generator) -#suite.addTest(unittest.TestLoader().loadTestsFromModule(pylibcerebrum.test)) +#The generator will be tested as a part of pylibcerebrum due to the inheritance of the test classes. +suite = unittest.TestLoader().loadTestsFromModule(pylibcerebrum.test) unittest.TextTestRunner(verbosity=2).run(suite) -- 2.11.4.GIT