From ce5f4d50014ebcbc97329c3233c8741a7c6b1084 Mon Sep 17 00:00:00 2001 From: Erin Sheldon Date: Fri, 16 Aug 2024 13:34:58 -0400 Subject: [PATCH] temporarily turn off test of external cfitsio --- .github/workflows/tests.yml | 40 ++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9b0fe651..10f2a825 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -77,26 +77,26 @@ jobs: cd .. cd .. - - name: test non-bundled build - shell: bash -l {0} - run: | - pip install -vv -e . \ - --global-option="build_ext" \ - --global-option="--use-system-fitsio" \ - --global-option="--system-fitsio-includedir=$HOME/cfitsio-static-install/include" \ - --global-option="--system-fitsio-libdir=$HOME/cfitsio-static-install/lib" - SKIP_BZIP_TEST=true pytest -vv fitsio - - - name: test non-bundled build w/ env vars - shell: bash -l {0} - run: | - rm -rf build* - find . -name "*.so" -type f -delete - export FITSIO_USE_SYSTEM_FITSIO=1 - export FITSIO_SYSTEM_FITSIO_INCLUDEDIR=$HOME/cfitsio-static-install/include - export FITSIO_SYSTEM_FITSIO_LIBDIR=$HOME/cfitsio-static-install/lib - pip install -vv -e . - SKIP_BZIP_TEST=true pytest -vv fitsio + # - name: test non-bundled build + # shell: bash -l {0} + # run: | + # pip install -vv -e . \ + # --global-option="build_ext" \ + # --global-option="--use-system-fitsio" \ + # --global-option="--system-fitsio-includedir=$HOME/cfitsio-static-install/include" \ + # --global-option="--system-fitsio-libdir=$HOME/cfitsio-static-install/lib" + # SKIP_BZIP_TEST=true pytest -vv fitsio + # + # - name: test non-bundled build w/ env vars + # shell: bash -l {0} + # run: | + # rm -rf build* + # find . -name "*.so" -type f -delete + # export FITSIO_USE_SYSTEM_FITSIO=1 + # export FITSIO_SYSTEM_FITSIO_INCLUDEDIR=$HOME/cfitsio-static-install/include + # export FITSIO_SYSTEM_FITSIO_LIBDIR=$HOME/cfitsio-static-install/lib + # pip install -vv -e . + # SKIP_BZIP_TEST=true pytest -vv fitsio - name: test bundled build shell: bash -l {0}