summaryrefslogtreecommitdiff
path: root/ci
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 /ci
parent7379c811580cd27e8695763ed5eb15746b133275 (diff)
downloadpython-coveragepy-git-64755dd42bf65c6006e3a8c44a145ea0a168032e.tar.gz
Meta on linux; makefile target rationalization
Diffstat (limited to 'ci')
-rwxr-xr-xci/manylinux.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/ci/manylinux.sh b/ci/manylinux.sh
index 31f3bed8..05d17948 100755
--- a/ci/manylinux.sh
+++ b/ci/manylinux.sh
@@ -40,6 +40,10 @@ elif [[ $action == "test" ]]; then
cd /io
export PYTHONPYCACHEPREFIX=/opt/pyc
+ if [[ $1 == "meta" ]]; then
+ shift
+ export COVERAGE_COVERAGE=yes
+ fi
TOXWORKDIR=.tox_linux "$TOXBIN/tox" "$@" || true
cd ~