Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.25 KB

CONTRIBUTING.md

File metadata and controls

44 lines (30 loc) · 1.25 KB

Contributing

We follow the Jupyter Contribution Workflow and the IPython Contributing Guide.

Code formatting

Use the pre-commit tool to format and lint the codebase:

# to apply to only staged files
$ pre-commit run
# to run against all files
$ pre-commit run --all-files
# to install so that it is run before commits
$ pre-commit install

Testing

In your environment pip install -e '.[test]' will be needed to be able to run all of the tests.

The recommended way to do this is using tox:

# to list all environments
$ tox -av
# to run all tests for a specific environment
$ tox -e py38

Documentation

NbClient needs some PRs to copy over documentation!

Releasing

If you are going to release a version of nbclient you should also be capable of testing it and building the docs.

Please follow the instructions in Testing and Documentation if you are unfamiliar with how to do so.

The rest of the release process can be found in these release instructions.