mirror of
https://github.com/gryf/wicd.git
synced 2026-01-04 21:04:15 +01:00
13 lines
268 B
Python
13 lines
268 B
Python
|
|
def run_tests():
|
|
import unittest
|
|
test_suite = unittest.TestSuite()
|
|
|
|
import testwnettools
|
|
test_suite.addTest(testwnettools.suite())
|
|
|
|
import testmisc
|
|
test_suite.addTest(testmisc.suite())
|
|
|
|
unittest.TextTestRunner(verbosity=2).run(test_suite)
|