From 30f6b14634a44cd3381c1038c8570a8a1a585b94 Mon Sep 17 00:00:00 2001 From: Simon Frings Date: Tue, 7 Dec 2021 16:56:09 +0100 Subject: [PATCH] Fix docker command to run server tests with GitHub actions --- tests/ab/run_ab_tests.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/ab/run_ab_tests.sh b/tests/ab/run_ab_tests.sh index ed5ca5a..9c50d66 100644 --- a/tests/ab/run_ab_tests.sh +++ b/tests/ab/run_ab_tests.sh @@ -36,7 +36,7 @@ if [ "$ABTEST" = "server" ]; then fi docker run --rm \ - -it \ + -i \ -v ${PWD}:/config \ -v ${PWD}/reports:/reports \ --name fuzzingclient \ @@ -46,5 +46,3 @@ if [ "$ABTEST" = "server" ]; then # send the shutdown command to the PHP echo server wget -O - -q http://127.0.0.1:9001/shutdown fi - -