Implement ability to add onSuiteComplete/onSuiteStart in config.yaml #2672
PushkarPahare
started this conversation in
Ideas
Replies: 1 comment
-
I'd say that right now is problematic. The way Maestro works is inherently portable. As soon as you start adding external scripting languages or binaries into the mix, that all falls apart. Where scripting like that is needed, I'd suggest using a wrapper script inside the domain, e.g. set -e
./setup.sh
set +e
maestro test ./someFolder
./teardown.sh |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'd like your feedback on adding onSuiteStart/onSuiteComplete functionality directly in config.yaml files. This would improve our test setup and teardown processes. Currently we handle the setup and teardown in external scripts. I have considered using flowOrder, but it has limitation continueOnFailure must be disabled to run the tear down.
Approaches I tried:
Proposed change:
Key Benefits:
I would appreciate your thoughts on 1/ Technical feasibility and 2/ Implementation approach.
Beta Was this translation helpful? Give feedback.
All reactions