summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-11-07 19:26:29 -0500
committerNed Batchelder <ned@nedbatchelder.com>2019-11-07 19:26:29 -0500
commit7379c811580cd27e8695763ed5eb15746b133275 (patch)
tree3260d45d6514aee3674c3e4a7958e86c8cdffca8 /ci
parent050e67c41e107b0dc3a3bd65b5c75f55c765ea5f (diff)
downloadpython-coveragepy-git-7379c811580cd27e8695763ed5eb15746b133275.tar.gz
Linux tests are runnable
PYTHONPYCACHEPREFIX makes the tests 10% faster on 3.8
Diffstat (limited to 'ci')
-rwxr-xr-xci/manylinux.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/ci/manylinux.sh b/ci/manylinux.sh
index 57439898..31f3bed8 100755
--- a/ci/manylinux.sh
+++ b/ci/manylinux.sh
@@ -35,10 +35,11 @@ elif [[ $action == "test" ]]; then
done
# Install packages and test
- TOXBIN=/opt/python/cp27-cp27m/bin
- "$TOXBIN/pip" install -r /io/requirements/ci.pip
+ TOXBIN=/opt/python/cp36-cp36m/bin
+ "$TOXBIN/pip" install -r /io/requirements/tox.pip
cd /io
+ export PYTHONPYCACHEPREFIX=/opt/pyc
TOXWORKDIR=.tox_linux "$TOXBIN/tox" "$@" || true
cd ~