File tree Expand file tree Collapse file tree 5 files changed +8
-6
lines changed
Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -17,5 +17,4 @@ RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
1717 npm install -g configurable-http-proxy
1818
1919RUN pip install --upgrade pip && \
20- pip install -r requirements.txt && \
2120 pip install -e .
Original file line number Diff line number Diff line change @@ -55,6 +55,9 @@ python3 -m venv .
5555source bin/activate
5656pip install -r requirements.txt
5757
58+ # OPTIONAL, install package if developing source code
59+ pip install -e .
60+
5861# start the docker containers
5962docker compose up -d
6063```
Original file line number Diff line number Diff line change 1- jupyterhub
21pytest
3- traitlets >= 5.0.0
4- notebook
52selenium
63flake8
Original file line number Diff line number Diff line change @@ -50,4 +50,8 @@ def get_description():
5050 author = 'Wesley Uykimpang' ,
5151 url = 'https://github.com/ucsd-ets/jupyterhub-saml-auth' ,
5252 packages = find_packages (),
53- install_requires = ['python3-saml' ])
53+ install_requires = [
54+ 'python3-saml' ,
55+ 'jupyterhub' ,
56+ 'traitlets>=5.0.0' ,
57+ 'notebook' ])
Original file line number Diff line number Diff line change 1- from jupyterhub_saml_auth .authenticator import SAMLAuthenticator
21import unittest
32from selenium import webdriver
43from selenium .webdriver .support .wait import WebDriverWait
You can’t perform that action at this time.
0 commit comments