mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-20 06:28:09 +00:00
fixup! test(core): add setUpClass and tearDownClass to core unit tests [no changelog]
This commit is contained in:
parent
991a863599
commit
a28b993311
@ -245,12 +245,12 @@ def run_class(c, test_result):
|
||||
set_up_class()
|
||||
for name in dir(o):
|
||||
if name.startswith("test"):
|
||||
run_test(o, name, set_up, tear_down, test_result)
|
||||
run_test_method(o, name, set_up, tear_down, test_result)
|
||||
finally:
|
||||
tear_down_class()
|
||||
|
||||
|
||||
def run_test(o, name, set_up, tear_down, test_result):
|
||||
def run_test_method(o, name, set_up, tear_down, test_result):
|
||||
print(" ", name, end=" ...")
|
||||
m = getattr(o, name)
|
||||
try:
|
||||
|
Loading…
Reference in New Issue
Block a user