Skip to content

Commit 6a0a43b

Browse files
Temporary commit for debugging
1 parent e65798b commit 6a0a43b

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/tests.yml

+11-5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
- master
1111
- v1.**
1212

13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
15+
cancel-in-progress: true
16+
1317
env:
1418
# Coloured output for GitHub Actions
1519
FORCE_COLOR: 3
@@ -89,11 +93,6 @@ jobs:
8993
pip install ${CYTHON_MIN}
9094
pip install ${NUMPY_MIN}
9195
if [ "${USE_SCIPY}" == "1" ]; then pip install ${SCIPY_MIN}; fi
92-
elif [ "${OPTIONS_NAME}" == "editable-install" ]; then
93-
echo "Testing an editable installation of pywt"
94-
sudo apt-get install ninja-build
95-
pip install numpy>=2.0.0b1 cython>=3.0.4 meson-python>=0.16.0 matplotlib pytest
96-
pip install -e . --no-build-isolation
9796
else
9897
pip install ${PIP_FLAGS} cython
9998
pip install ${PIP_FLAGS} numpy
@@ -112,6 +111,13 @@ jobs:
112111
pip install . -v
113112
fi
114113
114+
if [ "${OPTIONS_NAME}" == "editable-install" ]; then
115+
echo "Testing an editable installation of pywt"
116+
sudo apt-get install ninja-build
117+
pip install numpy>=2.0.0b1 cython>=3.0.4 meson-python>=0.16.0 matplotlib pytest --force-reinstall
118+
pip install -e . --no-build-isolation
119+
fi
120+
115121
- name: Run tests
116122
env:
117123
USE_SDIST: ${{ matrix.USE_SDIST }}

0 commit comments

Comments
 (0)