Update script runs unit and acceptance tests.

This commit is contained in:
Stephane Gourichon
2025-08-15 19:42:57 +02:00
parent 929f22861d
commit 58c84052d5

View File

@@ -54,4 +54,7 @@ do
podman-compose --no-ansi build || { fail_one "build" ; continue ; }
podman-compose --no-ansi down || { fail_one "down" ; continue ; }
podman-compose --no-ansi up -d || { fail_one "switch to newly built container" ; continue ; }
bash test_unit.sh || { fail_one "unit test" ; }
bash test_acceptance.sh || { fail_one "acceptance test" ; continue ; }
done