We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d23e3a commit 12c61e4Copy full SHA for 12c61e4
test/Makefile
@@ -56,6 +56,12 @@ proxy : test_proxy
56
docker compose up -d
57
@echo "Waiting for proxy to be ready..."
58
@until nc -z localhost 3128 && nc -z localhost 3129; do sleep 1; done
59
+ @echo "Proxy servers are ready, waiting additional 5 seconds for full startup..."
60
+ @sleep 5
61
+ @echo "Checking proxy server status..."
62
+ @cd proxy && docker compose ps
63
+ @echo "Checking proxy server logs..."
64
+ @cd proxy && docker compose logs --tail=20
65
@echo "Running proxy tests..."
66
./test_proxy; \
67
exit_code=$$?; \
0 commit comments