From a67ce34438e4c33113064330d6f5ae861fecbc12 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 26 Oct 2017 13:07:25 -0400 Subject: Use docker run --init so that we can interrupt tests if need be --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8e6be8ca..6174d777 100644 --- a/Makefile +++ b/Makefile @@ -70,8 +70,8 @@ wheel: tox -c tox_wheels.ini $(ARGS) manylinux: - docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/ci/manylinux.sh build - docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 /io/ci/manylinux.sh build + docker run -it --init --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/ci/manylinux.sh build + docker run -it --init --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 /io/ci/manylinux.sh build kit_upload: twine upload dist/* -- cgit v1.2.1