2022-07-18 16:56:33 -04:00
|
|
|
source(findFile('scripts', 'python/bdd.py'))
|
|
|
|
|
2022-10-25 14:44:28 +02:00
|
|
|
setupHooks('bdd_hooks.py')
|
|
|
|
collectStepDefinitions('./steps', '../shared/steps/', '../../global_shared/steps/', '../../suite_messaging/shared/steps/')
|
2022-07-18 16:56:33 -04:00
|
|
|
|
2023-05-30 12:24:04 +02:00
|
|
|
import configs
|
|
|
|
|
|
|
|
|
2022-07-18 16:56:33 -04: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-18 16:56:33 -04:00
|
|
|
runFeatureFile('test.feature')
|
2023-05-30 12:24:04 +02:00
|
|
|
configs.path.TMP.rmtree(ignore_errors=True)
|