From b1f30acd7bd29b97efdf2f3d4bad9a439e558fa9 Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Fri, 7 Feb 2025 17:47:56 -0800 Subject: [PATCH] fix demos --- demos/shared/test_runner/run_demo_tests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/demos/shared/test_runner/run_demo_tests.sh b/demos/shared/test_runner/run_demo_tests.sh index 05a3a16a..1cc9bed1 100644 --- a/demos/shared/test_runner/run_demo_tests.sh +++ b/demos/shared/test_runner/run_demo_tests.sh @@ -7,12 +7,12 @@ do echo "******************************************" echo "Running tests for $demo ..." echo "****************************************" - cd ../../$demo + cd ../../samples_python/$demo archgw up arch_config.yaml docker compose up -d cd ../shared/test_runner - TEST_DATA=../../$demo/test_data.yaml poetry run pytest - cd ../../$demo + TEST_DATA=../../samples_python/$demo/test_data.yaml poetry run pytest + cd ../../samples_python/$demo archgw down docker compose down -v cd ../shared/test_runner