fixed the toilets and works with uv now
Some checks failed
Build and deploy the backend to staging / Build and push image (pull_request) Successful in 1m58s
Run linting on the backend code / Build (pull_request) Failing after 20s
Run testing on the backend code / Build (pull_request) Failing after 22m6s
Build and deploy the backend to staging / Deploy to staging (pull_request) Successful in 1m8s

This commit is contained in:
2025-07-27 17:13:11 +02:00
parent 132aa5a19b
commit 9ccf68d983
4 changed files with 8 additions and 9 deletions

View File

@@ -36,7 +36,6 @@ def test_invalid_input(client, location, radius, status_code): # pylint: disa
"radius": radius
}
)
print(response.json())
# checks :
assert response.status_code == status_code
@@ -64,7 +63,6 @@ def test_no_toilets(client, location, status_code): # pylint: disable=redefin
"location": location
}
)
print(response.json())
toilets_list = [Toilets.model_validate(toilet) for toilet in response.json()]
# checks :
@@ -95,8 +93,6 @@ def test_toilets(client, location, status_code): # pylint: disable=redefined-
"radius" : 600
}
)
print(response.json())
toilets_list = [Toilets.model_validate(toilet) for toilet in response.json()]
# checks :