Skip to content

Commit 797d6b6

Browse files
committed
Add conditional installation of guidata from develop branch in CI workflow
(cherry picked from commit 12d7d99)
1 parent 77ed216 commit 797d6b6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/test_pyqt5.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ jobs:
3838
pip install PyQt5 setuptools numpy Cython
3939
python setup.py build_ext --inplace
4040
pip install .[test]
41+
if [ "${{ github.ref_name }}" = "develop" ]; then
42+
pip uninstall -y guidata
43+
pip install git+https://github.com/PlotPyStack/guidata.git@develop
44+
fi
4145
- name: Lint with Ruff
4246
run: ruff check --output-format=github plotpy
4347
- name: Test with pytest

0 commit comments

Comments
 (0)