Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 681 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (15 loc) · 681 Bytes

Contribute

For the docstrings we use the numpy style.

You can install some of the commonly used development tools by using e3nn's 'dev' extra:

pip install -e '.[dev]'

To have atomic code style checks performed at each commit, you can install the pre-commit hook using:

pre-commit install

These checks are automatically run on any commit made to the github repository but the pre-commit hook allows you to see if there are any problems locally.

Additionally, you may want to run the tests locally before pushing to remote. This can be done with (from the root e3nn directory):

pytest tests