mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
65fb04228e
The docker-py commit used in the standard `Dockerfile` is from Feb. 2015 and is out of date with the current API level and has fixes for things like the new docker cli config location and registry v2 changes/API responses as well. Also pass "NOT_ON_HOST=true" to docker-py test suite so that tests relying on direct HOST interaction (versus running in a container) are skipped. Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com> (github: estesp)
18 lines
500 B
Bash
18 lines
500 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# subshell so that we can export PATH without breaking other things
|
|
(
|
|
bundle .integration-daemon-start
|
|
|
|
dockerPy='/docker-py'
|
|
[ -d "$dockerPy" ] || {
|
|
dockerPy="$DEST/docker-py"
|
|
git clone https://github.com/docker/docker-py.git "$dockerPy"
|
|
}
|
|
|
|
# exporting PYTHONPATH to import "docker" from our local docker-py
|
|
test_env PYTHONPATH="$dockerPy" NOT_ON_HOST=true python "$dockerPy/tests/integration_test.py"
|
|
|
|
bundle .integration-daemon-stop
|
|
) 2>&1 | tee -a "$DEST/test.log"
|