mirror of
https://github.com/gryf/wicd.git
synced 2026-04-05 20:33:37 +02:00
12 lines
267 B
Python
12 lines
267 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)
|