加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 427 Bytes
一键复制 编辑 原始数据 按行查看 历史
Joffrey F 提交于 2015-05-06 17:53 . Fixes for #586
.PHONY: all build test integration-test unit-test
HOST_TMPDIR=test -n "$(TMPDIR)" && echo $(TMPDIR) || echo /tmp
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 -e NOT_ON_HOST=true -v `$(HOST_TMPDIR)`:/tmp -v /var/run/docker.sock:/var/run/docker.sock docker-py python tests/integration_test.py
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化