Try fixing hanging e2e tests #183

Merged
schmelczer merged 11 commits from asch/dead-locks into main 2025-12-14 17:19:25 +00:00
Showing only changes of commit c638ded53a - Show all commits

Always kill server

Andras Schmelczer 2025-12-14 10:55:46 +00:00

View file

@ -47,9 +47,16 @@ jobs:
run: |
cd sync-server
cargo run config-e2e.yml --color never &
SERVER_PID=$!
cd ..
scripts/e2e.sh 8
EXIT_CODE=$?
kill $SERVER_PID 2>/dev/null || true
wait $SERVER_PID 2>/dev/null || true
exit $EXIT_CODE
- name: Cleanup
if: always()