Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit bb7757a

Browse files
committed
Remove commits_where_fail
1 parent 3ad8aff commit bb7757a

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

api/public/v2/tests/test_test_results_view.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ def test_list(self):
5353
"outcome": self.test_instances[0].outcome,
5454
"branch": self.test_instances[0].branch,
5555
"repoid": self.test_instances[0].repoid,
56-
"commits_where_fail": self.test_instances[
57-
0
58-
].test.commits_where_fail,
5956
},
6057
{
6158
"id": self.test_instances[1].id,
@@ -67,10 +64,6 @@ def test_list(self):
6764
"outcome": self.test_instances[1].outcome,
6865
"branch": self.test_instances[1].branch,
6966
"repoid": self.test_instances[1].repoid,
70-
"failure_rate": self.test_instances[1].test.failure_rate,
71-
"commits_where_fail": self.test_instances[
72-
1
73-
].test.commits_where_fail,
7467
},
7568
],
7669
"total_pages": 1,
@@ -102,9 +95,6 @@ def test_list_filters(self):
10295
"outcome": self.test_instances[0].outcome,
10396
"branch": self.test_instances[0].branch,
10497
"repoid": self.test_instances[0].repoid,
105-
"commits_where_fail": self.test_instances[
106-
0
107-
].test.commits_where_fail,
10898
},
10999
],
110100
"total_pages": 1,
@@ -135,7 +125,6 @@ def test_retrieve(self, get_repo_permissions):
135125
"outcome": self.test_instances[0].outcome,
136126
"branch": self.test_instances[0].branch,
137127
"repoid": self.test_instances[0].repoid,
138-
"commits_where_fail": self.test_instances[0].test.commits_where_fail,
139128
}
140129

141130
@patch("api.shared.permissions.RepositoryArtifactPermissions.has_permission")
@@ -237,5 +226,4 @@ def test_result_with_valid_super_token(
237226
"outcome": self.test_instances[0].outcome,
238227
"branch": self.test_instances[0].branch,
239228
"repoid": self.test_instances[0].repoid,
240-
"commits_where_fail": self.test_instances[0].test.commits_where_fail,
241229
}

0 commit comments

Comments
 (0)