mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
functional_tests: ensure mining stops on error in mining test
this prevents messing up any subsequent test too
This commit is contained in:
parent
b928ead30e
commit
261abf79e1
@ -170,5 +170,15 @@ class MiningTest():
|
||||
assert res.hash == block_hash
|
||||
|
||||
|
||||
class Guard:
|
||||
def __enter__(self):
|
||||
pass
|
||||
|
||||
def __exit__(self, exc_type, exc_value, traceback):
|
||||
daemon = Daemon()
|
||||
try: daemon.stop_mining()
|
||||
except: pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
MiningTest().run_test()
|
||||
with Guard() as guard:
|
||||
MiningTest().run_test()
|
||||
|
Loading…
Reference in New Issue
Block a user