From 74ca2df06b935b614f840c123fef038f44e9730f Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Tue, 9 Jul 2019 12:04:07 +0100 Subject: [PATCH] Remove wheelhouses test script --- .travis.yml | 5 ----- tests/integration/test-wheelhouses.sh | 32 --------------------------- tests/travis.sh | 4 +--- 3 files changed, 1 insertion(+), 40 deletions(-) delete mode 100644 tests/integration/test-wheelhouses.sh diff --git a/.travis.yml b/.travis.yml index bcebbe27..05a8aceb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,15 +3,10 @@ dist: xenial matrix: include: - python: "3.5" - - python: "3.5" - env: WHEELHOUSE=1 - python: "3.6" - python: "3.7" - python: "3.7" env: LINTER=1 - allow_failures: - - python: "3.5" - env: WHEELHOUSE=1 sudo: required services: diff --git a/tests/integration/test-wheelhouses.sh b/tests/integration/test-wheelhouses.sh deleted file mode 100644 index 377e2c5b..00000000 --- a/tests/integration/test-wheelhouses.sh +++ /dev/null @@ -1,32 +0,0 @@ -set -e - -# Download some wheels from one location -PY_VERS="2.7 3.3 3.4 3.5" -for PYVER in ${PY_VERS}; do - wget "https://github.com/getnikola/wheelhouse/archive/v${PYVER}.zip" - unzip "v${PYVER}.zip" -done - -# Download some other wheels that Nathaniel made -#URL=https://vorpus.org/~njs/tmp/manylinux-test-wheels/original/ -#curl --silent $URL | grep 'a href' | grep whl | cut -d ' ' -f 8 | cut -d '=' -f 2 | cut -d '"' -f 2 | xargs -n1 -I '{}' wget --no-check-certificate -P wheelhouse-njs "$URL/{}" - -# Download some more wheels that Robert made -URL=http://stanford.edu/~rmcgibbo/wheelhouse/ -curl --silent $URL | grep 'a href' | grep whl | cut -d ' ' -f 8 | cut -d '=' -f 2 | cut -d '"' -f 2 | xargs -n1 -I '{}' wget -P wheelhouse-rmcgibbo "$URL/{}" -nc - -# These are boring -rm -f wheelhouse*/*-none-any.whl - -mkdir -p wheelhouse-ucs2 -cp $(dirname "${BASH_SOURCE[0]}")/cffi-1.5.0-cp27-none-linux_x86_64.whl wheelhouse-ucs2/ - -for whl in wheelhouse*/*.whl; do - echo '-----------------' - auditwheel show $whl - auditwheel repair $whl -w output/ || true - - if [ -f "output/$(basename $whl)" ]; then - auditwheel show output/$(basename $whl) - fi -done diff --git a/tests/travis.sh b/tests/travis.sh index 0992de2f..c7dd8e52 100755 --- a/tests/travis.sh +++ b/tests/travis.sh @@ -2,9 +2,7 @@ set -exo pipefail -if [[ "$WHEELHOUSE" == "1" ]]; then - bash tests/test-wheelhouses.sh -elif [[ "$LINTER" == "1" ]]; then +if [[ "$LINTER" == "1" ]]; then tox -e lint else pytest -s --cov auditwheel --cov-branch