We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c56fc47 commit 52e4377Copy full SHA for 52e4377
tools/build_test_env.sh
@@ -56,7 +56,11 @@ CONFIG=/tmp/python-gitlab.cfg
56
cleanup() {
57
rm -f "${CONFIG}"
58
log "Stopping gitlab-test docker container..."
59
- docker stop gitlab-test >/dev/null 2>&1
+ docker stop gitlab-test >/dev/null 2>&1 &
60
+ docker_stop_pid=$!
61
+ log "Waiting for gitlab-test docker container to exit..."
62
+ docker wait gitlab-test >/dev/null 2>&1
63
+ wait "${docker_stop_pid}"
64
log "Removing gitlab-test docker container..."
65
docker rm gitlab-test >/dev/null 2>&1
66
log "Deactivating Python virtualenv..."
0 commit comments