add debug statements for hurl

This commit is contained in:
Adil Hafeez 2025-03-15 16:31:26 -07:00
parent 4a50bccb48
commit 4d9f56eae6
No known key found for this signature in database
GPG key ID: 9B18EF7691369645

View file

@ -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