File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -60,20 +60,21 @@ jobs:
60
60
python -m pip install --upgrade pip
61
61
python -m pip install pytest
62
62
pip install -r requirements.txt
63
+ pip list
64
+
63
65
- name : Install nodejs dependencies
64
66
run : |
65
67
sudo npm install -g configurable-http-proxy
66
68
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).
71
73
- name : install JupyterHub
72
74
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
77
78
78
79
- name : pytest
79
80
run : |
You can’t perform that action at this time.
0 commit comments