Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-selo committed Jan 15, 2025
1 parent c0c28de commit 01bd3c2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion backend/tests/controllers/test_executions/test_reruns.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from typing import Any, TypeAlias

import pytest
from fastapi.testclient import TestClient
from fastapi.encoders import jsonable_encoder
from fastapi.testclient import TestClient
from httpx import Response

from test_observer.data_access.models import TestExecution
Expand Down Expand Up @@ -70,6 +70,11 @@ def test_execution_to_pending_rerun(test_execution: TestExecution) -> dict:
"store": test_execution.artefact_build.artefact.store,
"series": test_execution.artefact_build.artefact.series,
"repo": test_execution.artefact_build.artefact.repo,
"os": test_execution.artefact_build.artefact.os,
"release": test_execution.artefact_build.artefact.release,
"sha256": test_execution.artefact_build.artefact.sha256,
"image_url": test_execution.artefact_build.artefact.image_url,
"owner": test_execution.artefact_build.artefact.owner,
"stage": test_execution.artefact_build.artefact.stage,
"status": test_execution.artefact_build.artefact.status,
"assignee": test_execution.artefact_build.artefact.assignee,
Expand Down

0 comments on commit 01bd3c2

Please sign in to comment.