Original commit message from CVS: * testsuite/runtests.py (tests): Run all tests in one TestSuite instead of several. * testsuite/element.py (FakeSinkTest.setUp): Disable StateError tests until there is a way to disable element error output.
13 lines
314 B
Python
13 lines
314 B
Python
#!/usr/bin/env python
|
|
import sys
|
|
from unittest import TestSuite, TestLoader, TextTestRunner
|
|
from types import ClassType
|
|
|
|
loader = TestLoader()
|
|
testRunner = TextTestRunner()
|
|
|
|
test = TestSuite()
|
|
for name in ('element', 'interface', 'pipeline'):
|
|
test.addTest(loader.loadTestsFromName(name))
|
|
testRunner.run(tests)
|