Skip to content

Commit

Permalink
Temporary commit for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Apr 17, 2024
1 parent e65798b commit 6a0a43b
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
- master
- v1.**

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
# Coloured output for GitHub Actions
FORCE_COLOR: 3
Expand Down Expand Up @@ -89,11 +93,6 @@ jobs:
pip install ${CYTHON_MIN}
pip install ${NUMPY_MIN}
if [ "${USE_SCIPY}" == "1" ]; then pip install ${SCIPY_MIN}; fi
elif [ "${OPTIONS_NAME}" == "editable-install" ]; then
echo "Testing an editable installation of pywt"
sudo apt-get install ninja-build
pip install numpy>=2.0.0b1 cython>=3.0.4 meson-python>=0.16.0 matplotlib pytest
pip install -e . --no-build-isolation
else
pip install ${PIP_FLAGS} cython
pip install ${PIP_FLAGS} numpy
Expand All @@ -112,6 +111,13 @@ jobs:
pip install . -v
fi
if [ "${OPTIONS_NAME}" == "editable-install" ]; then
echo "Testing an editable installation of pywt"
sudo apt-get install ninja-build
pip install numpy>=2.0.0b1 cython>=3.0.4 meson-python>=0.16.0 matplotlib pytest --force-reinstall
pip install -e . --no-build-isolation
fi
- name: Run tests
env:
USE_SDIST: ${{ matrix.USE_SDIST }}
Expand Down

0 comments on commit 6a0a43b

Please sign in to comment.