status-desktop/test/ui-test/testSuites/suite_wallet/tst_wallet_transactions/test.py

14 lines
484 B
Python
Raw Permalink Normal View History

2022-07-21 12:15:02 +00:00
source(findFile('scripts', 'python/bdd.py'))
setupHooks('../../global_shared/scripts/bdd_hooks.py')
collectStepDefinitions('./steps', '../shared/steps/', '../../global_shared/steps/',
'../../suite_onboarding/shared/steps/', '../../suite_wallet/steps/')
2022-07-21 12:15:02 +00:00
import configs
2022-07-21 12:15:02 +00:00
def main():
testSettings.throwOnFailure = True
configs.path.TMP.mkdir(parents=True, exist_ok=True)
2022-07-21 12:15:02 +00:00
runFeatureFile('test.feature')
configs.path.TMP.rmtree(ignore_errors=True)