Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
# 1. Run Flask in the background (using 'poetry run python -m flask')
# We use FLASK_DEBUG=1 to see the 500 errors in the console
cp -r $GITHUB_WORKSPACE/specification/examples/responses/. $GITHUB_WORKSPACE/sandbox/api/examples/
set -m
FLASK_DEBUG=1 poetry run python -m flask --app api.app:app run -p 9000 &
FLASK_PID=$!

Expand All @@ -46,4 +47,4 @@ jobs:

# 4. Cleanup: Kill the Flask process using the PID we saved
echo "Shutting down Flask..."
kill $FLASK_PID
kill -TERM -$FLASK_PID
Loading