fix-timeout

This commit is contained in:
Jackson Delahunt 2023-08-21 17:45:55 +10:00
parent e8ef902bd5
commit 87775baa49

View file

@ -20,7 +20,7 @@ docker run \
sleep infinity
# Wait until the desktop environment test container is running before proceeding
timeout 1 sh -c "until docker inspect $DESKTOP_ENVIRONMENT_CONTAINER_NAME | grep Status | grep -m 1 running >/dev/null; do sleep 1; done"
timeout 10 sh -c "until docker inspect $DESKTOP_ENVIRONMENT_CONTAINER_NAME | grep Status | grep -m 1 running >/dev/null; do sleep 1; done"
# Check desktop environment container started successfully
TEST_RESULT=$?