From 1c60ec9804dea0a86b089796e6074ecdcba313b2 Mon Sep 17 00:00:00 2001 From: bunkerity Date: Fri, 20 Aug 2021 15:13:16 +0200 Subject: [PATCH] tests - fix volume wait with linux tests --- tests/linux-run.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/linux-run.sh b/tests/linux-run.sh index 25cb0b0..e738bc3 100755 --- a/tests/linux-run.sh +++ b/tests/linux-run.sh @@ -2,6 +2,7 @@ function cleanup() { docker kill "$1" + sleep 30 docker volume rm "linux-tmp" } @@ -94,3 +95,5 @@ fi if [ "$do_cleanup" == "yes" ] ; then cleanup "$name" fi + +exit 0