Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add fail on repeat #72

Merged
merged 14 commits into from
Jan 13, 2024
Prev Previous commit
Next Next commit
fix typo
tsv1 committed Jan 9, 2024
commit da8ef3d77ee6b6c64eb16851887eafa60179d5af
4 changes: 2 additions & 2 deletions tests/plugins/repeater/test_scheduler.py
Original file line number Diff line number Diff line change
@@ -33,8 +33,8 @@ def test_aggregate_nothing(scheduler: Scheduler):
lambda: [make_scenario_result().mark_failed(), make_scenario_result().mark_failed()],
lambda: [make_scenario_result().mark_skipped(), make_scenario_result().mark_skipped()],
])
def test_aggreate_results(get_scenario_results: Callable[[], List[ScenarioResult]], *,
scheduler: Scheduler):
def test_aggregate_results(get_scenario_results: Callable[[], List[ScenarioResult]], *,
scheduler: Scheduler):
with when:
scenario_results = get_scenario_results()
aggregated_result = scheduler.aggregate_results(scenario_results)