Skip to content

Commit

Permalink
fix: selected related test in process flakes
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-sentry committed Dec 12, 2024
1 parent a1f9200 commit 33b58c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tasks/process_flakes.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ def get_test_instances(
TestInstance.objects.filter(
repo_commit_branch_filter
& (test_failed_filter | test_passed_but_flaky_filter)
).all()
)
.select_related("test")
.all()
)
return test_instances

Expand Down

0 comments on commit 33b58c4

Please sign in to comment.