Skip to content

Instantly share code, notes, and snippets.

@tzachz
Created January 30, 2024 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tzachz/a7946bd5e16d8bd495024a5ce3c1f020 to your computer and use it in GitHub Desktop.
Save tzachz/a7946bd5e16d8bd495024a5ce3c1f020 to your computer and use it in GitHub Desktop.
Source Config Invoke Tasks
@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