Skip to content

Commit

Permalink
Force-retry all unified tests
Browse files Browse the repository at this point in the history
  • Loading branch information
katcharov committed Nov 21, 2024
1 parent 6f3b56d commit d24e003
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ protected static Collection<Arguments> getTestData(final String directory, final
TestDef testDef = testDef(directory, fileDescription, testDescription, isReactive);
doSkips(testDef);

boolean forceFlaky = testDef.wasAssignedModifier(UnifiedTestModifications.Modifier.FORCE_FLAKY);
boolean forceFlaky = true;// testDef.wasAssignedModifier(UnifiedTestModifications.Modifier.FORCE_FLAKY);
boolean retry = forceFlaky || testDef.wasAssignedModifier(UnifiedTestModifications.Modifier.RETRY);

int attempts = retry ? ATTEMPTS : 1;
Expand Down

0 comments on commit d24e003

Please sign in to comment.