pylint update and better tour viz
Some checks failed
Build and deploy the backend to staging / Build and push image (pull_request) Successful in 1m41s
Run linting on the backend code / Build (pull_request) Failing after 30s
Run testing on the backend code / Build (pull_request) Failing after 1m47s
Build and deploy the backend to staging / Deploy to staging (pull_request) Successful in 38s

This commit is contained in:
2024-11-21 15:28:12 +01:00
parent a718b883d7
commit b56647f12e
4 changed files with 8 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ def test_turckheim(client, request):
landmarks = load_trip_landmarks(client, result['first_landmark_uuid'])
# Create the trip string
trip_string = [f"{landmark.name} ({landmark.attractiveness}) - {landmark.time_to_reach_next}" for landmark in landmarks]
trip_string = [f"{landmark.name} ({landmark.attractiveness} | {landmark.duration}) - {landmark.time_to_reach_next}" for landmark in landmarks]
# Pass additional info to pytest for reporting
request.node.trip_details = trip_string