mirror of
https://github.com/gryf/wicd.git
synced 2025-12-19 12:28:08 +01: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)
|