Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 888 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (20 loc) · 888 Bytes

For more information, see https://docs.dask.org/en/latest/develop.html#contributing-to-code

Style

Distributed conforms with the flake8 and black styles. To make sure your code conforms with these styles, run

$ pip install black flake8
$ cd path/to/distributed
$ black distributed
$ flake8 distributed

Docstrings

Dask Distributed roughly follows the numpydoc standard. More information is available at https://docs.dask.org/en/latest/develop.html#docstrings.

Tests

Dask employs extensive unit tests to ensure correctness of code both for today and for the future. Test coverage is expected for all code contributions. More detail is at https://docs.dask.org/en/latest/develop.html#test