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