Skip to content

Commit 9a03247

Browse files
authored
Merge pull request #796 from simvue-io/795-ensure-ci-is-working
🐛 Fix no run for artifact and tag fetch tests
2 parents d0f60dd + 9b0111f commit 9a03247

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/test_fetch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_alerts_fetch(sort_column: str | None, sort_descending: bool | None) ->
3232
],
3333
ids=("name-desc", "created-asc", "no-sorting")
3434
)
35-
def test_artifacts_fetch(sort_column: str | None, sort_descending: bool | None) -> None:
35+
def test_artifacts_fetch(create_test_run, sort_column: str | None, sort_descending: bool | None) -> None:
3636
if sort_column:
3737
assert dict(Artifact.get(sorting=[{"column": sort_column, "descending": sort_descending}], count=10))
3838
else:
@@ -50,7 +50,7 @@ def test_artifacts_fetch(sort_column: str | None, sort_descending: bool | None)
5050
],
5151
ids=("name-desc", "created-asc", "no-sorting")
5252
)
53-
def test_tags_fetch(sort_column: str | None, sort_descending: bool | None) -> None:
53+
def test_tags_fetch(create_test_run, sort_column: str | None, sort_descending: bool | None) -> None:
5454
if sort_column:
5555
assert dict(Tag.get(sorting=[{"column": sort_column, "descending": sort_descending}], count=10))
5656
else:

0 commit comments

Comments
 (0)