mirror of https://github.com/docker/docker-py.git
Add file arg to integration tests
make integration-test file=models_services_test.py Signed-off-by: Ben Firshman <ben@firshman.co.uk>
This commit is contained in:
parent
e676840945
commit
1a57f8800e
4
Makefile
4
Makefile
|
|
@ -35,11 +35,11 @@ unit-test-py3: build-py3
|
||||||
|
|
||||||
.PHONY: integration-test
|
.PHONY: integration-test
|
||||||
integration-test: build
|
integration-test: build
|
||||||
docker run -v /var/run/docker.sock:/var/run/docker.sock docker-py py.test tests/integration
|
docker run -v /var/run/docker.sock:/var/run/docker.sock docker-py py.test tests/integration/${file}
|
||||||
|
|
||||||
.PHONY: integration-test-py3
|
.PHONY: integration-test-py3
|
||||||
integration-test-py3: build-py3
|
integration-test-py3: build-py3
|
||||||
docker run -v /var/run/docker.sock:/var/run/docker.sock docker-py3 py.test tests/integration
|
docker run -v /var/run/docker.sock:/var/run/docker.sock docker-py3 py.test tests/integration/${file}
|
||||||
|
|
||||||
.PHONY: integration-dind
|
.PHONY: integration-dind
|
||||||
integration-dind: build build-py3
|
integration-dind: build build-py3
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue