diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-10-26 13:07:25 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-10-26 13:07:25 -0400 |
commit | 0981f34e65d2a3c6638e2295e443003835837254 (patch) | |
tree | 01f747595b79174465b116e4e7b5b56e62944a9b | |
parent | 518e90c948d71e94eec141c303b844d5cb804e6f (diff) | |
download | python-coveragepy-0981f34e65d2a3c6638e2295e443003835837254.tar.gz |
Use docker run --init so that we can interrupt tests if need be
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | howto.txt | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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/* @@ -93,7 +93,7 @@ - $ tox - Testing on Linux: - - $ docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/ci/manylinux.sh test + - $ docker run -it --init --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/ci/manylinux.sh test - For complete coverage testing: |