remove .itlab-ci.yml and call of pytest to Makefile

This commit is contained in:
Thomas Peetz
2025-04-18 00:52:00 +02:00
parent 116bb77e4c
commit 1997957069
4 changed files with 1 additions and 42 deletions
View File
+10
View File
@@ -0,0 +1,10 @@
from fastapi.testclient import TestClient
from app.main import app
client = TestClient(app)
def test_get_authors():
response = client.get("/comic/artists")
assert response.status_code == 200
assert len(response.json()) == 5