mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 13:08:31 +02:00
make behave slightly less verbose for use with behave --format progress2
This commit is contained in:
parent
07f41e8cfa
commit
6b73eb786e
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ def before_feature(context, feature):
|
|||
# add "skip" tag
|
||||
# https://stackoverflow.com/a/42721605/4276230
|
||||
if "skip" in feature.tags:
|
||||
feature.skip("Marked with @skip")
|
||||
feature.skip("")
|
||||
return
|
||||
|
||||
if "skip_win" in feature.tags and on_windows:
|
||||
|
@ -44,7 +44,7 @@ def before_scenario(context, scenario):
|
|||
# add "skip" tag
|
||||
# https://stackoverflow.com/a/42721605/4276230
|
||||
if "skip" in scenario.effective_tags:
|
||||
scenario.skip("Marked with @skip")
|
||||
scenario.skip("")
|
||||
return
|
||||
|
||||
if "skip_win" in scenario.effective_tags and on_windows:
|
||||
|
|
Loading…
Add table
Reference in a new issue