Browse code

integration-cli: pull busybox before running

Make sure the busybox image is ready to be used when running the cli
integration tests.

Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack)

unclejack authored on 2014/04/01 03:48:30
Showing 1 changed files
... ...
@@ -19,6 +19,10 @@ fi
19 19
 
20 20
 docker -d -D -p $DEST/docker.pid &> $DEST/docker.log &
21 21
 
22
+# pull the busybox image before running the tests
23
+sleep 2
24
+docker pull busybox
25
+
22 26
 bundle_test_integration_cli 2>&1 \
23 27
 	| tee $DEST/test.log
24 28