Welcome! As a Jupyter project, you can follow the Jupyter contributor guide.
Make sure to also follow Project Jupyter's Code of Conduct for a friendly and welcoming collaborative environment.
JupyterHub requires Python >= 3.5 and nodejs.
As a Python project, a development install of JupyterHub follows standard practices for the basics (steps 1-2).
-
clone the repo
git clone https://github.com/jupyterhub/jupyterhub
-
do a development install with pip
cd jupyterhub python3 -m pip install --editable .
-
install the development requirements, which include things like testing tools
python3 -m pip install -r dev-requirements.text
-
install configurable-http-proxy with npm:
npm install -g configurable-http-proxy
-
set up pre-commit hooks for automatic code formatting, etc.
pre-commit install
You can also invoke the pre-commit hook manually at any time with
pre-commit run
JupyterHub has adopted automatic code formatting so you shouldn't need to worry too much about your code style. As long as your code is valid, the pre-commit hook should take care of how it should look. You can invoke the pre-commit hook by hand at any time with:
pre-commit run
which should run any autoformatting on your code and tell you about any errors it couldn't fix automatically. You may also install black integration into your text editor to format code automatically.
If you have already committed files before setting up the pre-commit
hook with pre-commit install
, you can fix everything up using
pre-commit run --all-files
. You need to make the fixing commit
yourself after that.
It's a good idea to write tests to exercise any new features, or that trigger any bugs that you have fixed to catch regressions.
You can run the tests with:
pytest -v
in the repo directory. If you want to just run certain tests, check out the pytest docs for how pytest can be called. For instance, to test only spawner-related things in the REST API:
pytest -v -k spawn jupyterhub/tests/test_api.py
The tests live in jupyterhub/tests
and are organized roughly into:
test_api.py
tests the REST APItest_pages.py
tests loading the HTML pages
and other collections of tests for different components. When writing a new test, there should usually be a test of similar functionality already written and related tests should be added nearby. When in doubt, feel free to ask.
TODO: describe some details about fixtures, etc.