From 4d9f56eae6fc715a7afe3723ec220b6313e222e1 Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Sat, 15 Mar 2025 16:31:26 -0700 Subject: [PATCH] add debug statements for hurl --- demos/shared/test_runner/run_demo_tests.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/demos/shared/test_runner/run_demo_tests.sh b/demos/shared/test_runner/run_demo_tests.sh index e504e572..f548008b 100644 --- a/demos/shared/test_runner/run_demo_tests.sh +++ b/demos/shared/test_runner/run_demo_tests.sh @@ -8,9 +8,13 @@ do echo "Running tests for $demo ..." echo "****************************************" cd ../../samples_python/$demo + echo "starting archgw" archgw up arch_config.yaml - docker compose up -d + echo "starting docker containers" + docker compose up -d 2>&1 > /dev/null + echo "starting hurl tests" hurl --test hurl_tests + echo "stopping docker containers and archgw" archgw down docker compose down -v cd ../../shared/test_runner