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:
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 : |
You can’t perform that action at this time.
0 commit comments