File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,13 +56,13 @@ CONFIG=/tmp/python-gitlab.cfg
56
56
cleanup () {
57
57
rm -f " ${CONFIG} "
58
58
log " Stopping gitlab-test docker container..."
59
- docker stop gitlab-test > /dev/null 2>&1 &
59
+ docker stop gitlab-test > /dev/null &
60
60
docker_stop_pid=$!
61
61
log " Waiting for gitlab-test docker container to exit..."
62
- docker wait gitlab-test > /dev/null 2>&1
62
+ docker wait gitlab-test > /dev/null
63
63
wait " ${docker_stop_pid} "
64
64
log " Removing gitlab-test docker container..."
65
- docker rm gitlab-test > /dev/null 2>&1
65
+ docker rm gitlab-test > /dev/null
66
66
log " Deactivating Python virtualenv..."
67
67
command -v deactivate > /dev/null 2>&1 && deactivate || true
68
68
log " Deleting python virtualenv..."
@@ -75,7 +75,7 @@ cleanup() {
75
75
}
76
76
77
77
try docker run --name gitlab-test --detach --publish 8080:80 \
78
- --publish 2222:22 gpocentek/test-python-gitlab:latest > /dev/null 2>&1
78
+ --publish 2222:22 gpocentek/test-python-gitlab:latest > /dev/null
79
79
80
80
LOGIN=' root'
81
81
PASSWORD=' 5iveL!fe'
You can’t perform that action at this time.
0 commit comments