blob: 4cb0ffdacfd9725fd0a5b884680098504f659e9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.PHONY: all build test integration-test unit-test
all: test
build:
docker build -t docker-py .
test: unit-test integration-test
unit-test: build
docker run docker-py python tests/test.py
integration-test: build
docker run -v /var/run/docker.sock:/var/run/docker.sock docker-py python tests/integration_test.py
|