behave
Links
- behave doc: https://behave.readthedocs.io/en/stable/index.html
- behave on GitHub: https://github.com/behave/behave
Tags
Include or exclude scenarios by tags:
- only
slow
scenarios:behave --tags=slow
- all but
slow
scenarios:behave --tags=-slow
- either
wip
orslow
scenarios:behave --tags=wip,slow
- only scenarios with
wip
andslow
:behave --tags=wip --tags=slow
Last modified September 8, 2023: add behave (9793d50)