diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-11-07 19:26:29 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-11-07 19:26:29 -0500 |
commit | 7379c811580cd27e8695763ed5eb15746b133275 (patch) | |
tree | 3260d45d6514aee3674c3e4a7958e86c8cdffca8 /ci | |
parent | 050e67c41e107b0dc3a3bd65b5c75f55c765ea5f (diff) | |
download | python-coveragepy-git-7379c811580cd27e8695763ed5eb15746b133275.tar.gz |
Linux tests are runnable
PYTHONPYCACHEPREFIX makes the tests 10% faster on 3.8
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/manylinux.sh | 5 |
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 ~ |