summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-11-08 08:50:04 -0500
committerNed Batchelder <ned@nedbatchelder.com>2019-11-08 08:50:04 -0500
commit64755dd42bf65c6006e3a8c44a145ea0a168032e (patch)
tree2a609e95d6a67053555a2e9e2183c0b96a2fcce0 /Makefile
parent7379c811580cd27e8695763ed5eb15746b133275 (diff)
downloadpython-coveragepy-git-64755dd42bf65c6006e3a8c44a145ea0a168032e.tar.gz
Meta on linux; makefile target rationalization
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3a40f66f..41d6f834 100644
--- a/Makefile
+++ b/Makefile
@@ -73,13 +73,16 @@ DOCKER_RUN = docker run -it --init --rm -v `pwd`:/io
RUN_MANYLINUX_X86 = $(DOCKER_RUN) quay.io/pypa/manylinux1_x86_64 /io/ci/manylinux.sh
RUN_MANYLINUX_I686 = $(DOCKER_RUN) quay.io/pypa/manylinux1_i686 /io/ci/manylinux.sh
-testmanylinux:
+test_linux:
# The Linux .pyc files clash with the host's because of file path
# changes, so clean them before and after running tests.
make clean_platform
$(RUN_MANYLINUX_X86) test $(ARGS)
make clean_platform
+meta_linux:
+ ARGS="meta $(ARGS)" make test_linux
+
# Coverage measurement of coverage.py itself (meta-coverage). See metacov.ini
# for details.
@@ -97,7 +100,7 @@ kit:
wheel:
tox -c tox_wheels.ini $(ARGS)
-manylinux:
+kit_linux:
$(RUN_MANYLINUX_X86) build
$(RUN_MANYLINUX_I686) build