2022-03-29 08:30:38 +00:00
|
|
|
source(findFile('scripts', 'python/bdd.py'))
|
|
|
|
|
2022-08-19 15:23:09 +00:00
|
|
|
setupHooks('../../global_shared/scripts/bdd_hooks.py')
|
|
|
|
collectStepDefinitions('./steps', '../shared/steps/', '../../global_shared/steps/', '../../suite_onboarding/shared/steps/')
|
2022-03-29 08:30:38 +00:00
|
|
|
|
2023-05-30 10:24:04 +00:00
|
|
|
import configs
|
|
|
|
|
|
|
|
|
2022-03-29 08:30:38 +00:00
|
|
|
def main():
|
|
|
|
testSettings.throwOnFailure = True
|
2023-05-30 10:24:04 +00:00
|
|
|
configs.path.TMP.mkdir(parents=True, exist_ok=True)
|
|
|
|
runFeatureFile('test.feature')
|
|
|
|
configs.path.TMP.rmtree(ignore_errors=True)
|