Skip to content

Commit c152988

Browse files
committed
ci: avoid installing pre-releases to reduce complexity
1 parent 09f4ebc commit c152988

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,21 @@ jobs:
6060
python -m pip install --upgrade pip
6161
python -m pip install pytest
6262
pip install -r requirements.txt
63+
pip list
64+
6365
- name: Install nodejs dependencies
6466
run: |
6567
sudo npm install -g configurable-http-proxy
6668
67-
# We need to check compatibility with different versions of the JH
68-
# API, including latest development. For that, we also need to
69-
# pull in the dependencies of that old JH version (but we don't
70-
# need conda/npm for our tests).
69+
# We need to check compatibility with different versions of the JH API,
70+
# including latest development. For that, we also need to pull in the
71+
# development dependencies of that old JH version (but we don't need
72+
# conda/npm for our tests).
7173
- name: install JupyterHub
7274
run: |
73-
git clone --quiet --branch ${{ matrix.JHUB_VER }} https://github.com/jupyterhub/jupyterhub.git jupyterhub
74-
pip install --pre -r jupyterhub/dev-requirements.txt
75-
pip install --upgrade pytest
76-
pip install --pre -e jupyterhub
75+
git clone --quiet --branch ${{ matrix.JHUB_VER }} https://github.com/jupyterhub/jupyterhub.git ./jupyterhub
76+
pip install -r ./jupyterhub/dev-requirements.txt
77+
pip install ./jupyterhub
7778
7879
- name: pytest
7980
run: |

0 commit comments

Comments
 (0)