Skip to content

Commit e2ccbf1

Browse files
authored
Fix: [AEA-6002] - retry tests in qa (#557)
## Summary - Routine Change ### Details - retry tests in qa
1 parent 741f56a commit e2ccbf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def before_feature(context, feature):
235235
if "skip-sandbox" in feature.tags and "sandbox" in environment:
236236
feature.skip("Marked with @skip-sandbox")
237237
return
238-
if environment == "internal-dev":
238+
if environment in ["internal-dev", "qa"]:
239239
for scenario in feature.walk_scenarios():
240240
patch_scenario_with_autoretry(scenario, max_attempts=3)
241241

0 commit comments

Comments
 (0)