LibreVNA/Software/Integrationtests/Integrationtest.py

25 lines
679 B
Python
Raw Normal View History

2022-11-14 07:09:19 +08:00
import unittest
testmodules = [
2022-11-19 22:47:08 +08:00
'tests.TestConnect',
'tests.TestMode',
'tests.TestVNASweep',
2022-11-14 07:09:19 +08:00
'tests.TestCalibration',
2022-11-21 03:48:36 +08:00
'tests.TestGenerator',
'tests.TestSASweep',
2022-11-14 07:09:19 +08:00
]
suite = unittest.TestSuite()
for t in testmodules:
try:
# If the module defines a suite() function, call it to get the suite.
mod = __import__(t, globals(), locals(), ['suite'])
suitefn = getattr(mod, 'suite')
suite.addTest(suitefn())
except (ImportError, AttributeError):
# else, just load all the test cases from the module.
suite.addTest(unittest.defaultTestLoader.loadTestsFromName(t))
unittest.TextTestRunner().run(suite)