diff --git a/app/utils.py b/app/utils.py index a2cf6702..e32a9b90 100644 --- a/app/utils.py +++ b/app/utils.py @@ -190,9 +190,7 @@ def selected_tests_from_execution(run: TestRunExecution) -> SelectedTests: ) for case in suite.test_case_executions: collections[index].test_suites[-1].test_cases.append( - SelectedTestCase( - public_id=case.public_id, iterations=case.execution_index - ) + SelectedTestCase(public_id=case.public_id, iterations=1) ) return SelectedTests(collections=collections)