LibreVNA/Software/Integrationtests/Integrationtest.py

31 lines
934 B
Python
Raw Normal View History

2022-11-14 00:09:19 +01:00
import unittest
testmodules = [
'tests.TestUpdate', # Must go first because it updates the connected VNA to the firwmare which should be tested
2022-11-19 15:47:08 +01:00
'tests.TestConnect',
2024-04-20 04:38:51 +02:00
'tests.TestStatusRegisters',
2022-11-19 15:47:08 +01:00
'tests.TestMode',
'tests.TestSync',
2022-11-19 15:47:08 +01:00
'tests.TestVNASweep',
2022-11-14 00:09:19 +01:00
'tests.TestCalibration',
2022-11-20 20:48:36 +01:00
'tests.TestGenerator',
'tests.TestSASweep',
2024-04-20 03:45:39 +02:00
'tests.TestRST',
2022-11-14 00:09:19 +01: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))
result = unittest.TextTestRunner(verbosity=2).run(suite)
exit(int(not result.wasSuccessful()))