Skip to content

Commit

Permalink
[CI] Wait for Webdav to be ready
Browse files Browse the repository at this point in the history
  • Loading branch information
troopa81 authored and nyalldawson committed Sep 6, 2021
1 parent d897307 commit 580e7f4
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .docker/docker-qgis-test.sh
Expand Up @@ -175,7 +175,17 @@ EOT

fi


#######################################
# Wait for WebDAV container to be ready
#######################################

echo "Wait for webdav to be ready..."
while ! curl -f -X GET -u qgis:myPasswd! http://$QGIS_WEBDAV_HOST:$QGIS_WEBDAV_PORT/webdav_tests/ &> /dev/null;
do
sleep 1
printf "."
done
echo "done"

###########
# Run tests
Expand Down

0 comments on commit 580e7f4

Please sign in to comment.