We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 741f56a commit e2ccbf1Copy full SHA for e2ccbf1
features/environment.py
@@ -235,7 +235,7 @@ def before_feature(context, feature):
235
if "skip-sandbox" in feature.tags and "sandbox" in environment:
236
feature.skip("Marked with @skip-sandbox")
237
return
238
- if environment == "internal-dev":
+ if environment in ["internal-dev", "qa"]:
239
for scenario in feature.walk_scenarios():
240
patch_scenario_with_autoretry(scenario, max_attempts=3)
241
0 commit comments