Created
January 30, 2024 23:09
-
-
Save tzachz/a7946bd5e16d8bd495024a5ce3c1f020 to your computer and use it in GitHub Desktop.
Source Config Invoke Tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@task | |
def nightly_test(ctx): | |
"""---> Run Component Tests (Behave) - nightly scenarios """ | |
ctx.run("behave tests/features --no-capture --no-capture-stderr --tags=nightly") | |
@task | |
def release_test(ctx): | |
"""---> Run Component Tests (Behave) - release scenarios""" | |
ctx.run("behave tests/features --no-capture --no-capture-stderr --tags=release") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment