mirror of
https://github.com/katanemo/plano.git
synced 2026-04-26 01:06:25 +02:00
19 lines
452 B
Bash
19 lines
452 B
Bash
#!/bin/bash
|
|
set -eu
|
|
|
|
# for demo in currency_exchange hr_agent
|
|
for demo in currency_exchange
|
|
do
|
|
echo "******************************************"
|
|
echo "Running tests for $demo ..."
|
|
echo "****************************************"
|
|
cd ../$demo
|
|
archgw up arch_config.yaml
|
|
docker compose up -d
|
|
cd ../test_runner
|
|
TEST_DATA=../$demo/test_data.yaml poetry run pytest
|
|
cd ../$demo
|
|
archgw down
|
|
docker compose down -v
|
|
cd ../test_runner
|
|
done
|