Skip to content

Commit bd20a56

Browse files
committed
Refactor Git installation of guidata in CI workflow to use cloning instead of pip install
1 parent c5fbf7f commit bd20a56

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test_pyqt5.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ jobs:
4040
pip install .[test]
4141
if [ "${{ github.ref_name }}" = "develop" ]; then
4242
pip uninstall -y guidata
43-
pip install git+https://github.com/PlotPyStack/guidata.git@develop
43+
cd ..
44+
git clone --depth 1 --branch develop https://github.com/PlotPyStack/guidata.git
45+
cd PlotPy
46+
pip install -e ../guidata
4447
fi
4548
- name: Lint with Ruff
4649
run: ruff check --output-format=github plotpy

0 commit comments

Comments
 (0)