only test currency exchange in demo test (#348)

This commit is contained in:
Adil Hafeez 2024-12-21 11:33:08 -08:00 committed by GitHub
parent ba7279becb
commit 8407edae99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,8 @@
#!/bin/bash
set -eu
for demo in currency_exchange hr_agent
# for demo in currency_exchange hr_agent
for demo in currency_exchange
do
echo "******************************************"
echo "Running tests for $demo ..."
@ -12,7 +13,7 @@ do
cd ../test_runner
TEST_DATA=../$demo/test_data.yaml poetry run pytest
cd ../$demo
docker compose down -v
archgw down
docker compose down -v
cd ../test_runner
done