mirror of
https://github.com/katanemo/plano.git
synced 2026-06-20 15:28:07 +02:00
19 lines
496 B
Bash
19 lines
496 B
Bash
#!/bin/bash
|
|
set -eu
|
|
|
|
# for demo in currency_exchange hr_agent
|
|
for demo in currency_exchange weather_forecast
|
|
do
|
|
echo "******************************************"
|
|
echo "Running tests for $demo ..."
|
|
echo "****************************************"
|
|
cd ../../samples_python/$demo
|
|
archgw up arch_config.yaml
|
|
docker compose up -d
|
|
cd ../../shared/test_runner
|
|
hurl --test hurl_tests
|
|
cd ../../samples_python/$demo
|
|
archgw down
|
|
docker compose down -v
|
|
cd ../../shared/test_runner
|
|
done
|