From be850330a8a50b1b6f2b9cc02065dc2aa9169b2f Mon Sep 17 00:00:00 2001 From: Pavol Mederly Date: Tue, 28 Apr 2020 13:46:20 +0200 Subject: [PATCH] Adapt docker-compose for tests in demo/shibboleth (Copied from demo/grouper tests.) --- demo/shibboleth/tests/main.bats | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/demo/shibboleth/tests/main.bats b/demo/shibboleth/tests/main.bats index 06a01da..a480fdb 100755 --- a/demo/shibboleth/tests/main.bats +++ b/demo/shibboleth/tests/main.bats @@ -9,7 +9,9 @@ load ../../../library } @test "010 Initialize and start containers" { - docker-compose -f docker-compose-tests.yml build --pull + docker-compose -f docker-compose-tests.yml build --pull midpoint_data directory idp + # Sometimes the tier/midpoint:xyz is not yet in the repository, causing issues with --pull + docker-compose -f docker-compose-tests.yml build midpoint_server docker-compose -f docker-compose-tests.yml up -d }