From 58c84052d5842a505e06db4662c616fcaceacbf5 Mon Sep 17 00:00:00 2001 From: Stephane Gourichon Date: Fri, 15 Aug 2025 19:42:57 +0200 Subject: [PATCH] Update script runs unit and acceptance tests. --- tools/containers_check_update_rebuild_switch.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/containers_check_update_rebuild_switch.sh b/tools/containers_check_update_rebuild_switch.sh index cf974b1..704db72 100755 --- a/tools/containers_check_update_rebuild_switch.sh +++ b/tools/containers_check_update_rebuild_switch.sh @@ -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