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