Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 534 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (17 loc) · 534 Bytes

Contributing

Issues and pull requests are more than welcome.

dev install

$ git clone https://github.com/developmentseed/rio-viz.git
$ cd rio-viz
$ pip install -e .["test,dev"]

You can then run the tests with the following command:

python -m pytest --cov rio_viz --cov-report term-missing

pre-commit

This repo is set to use pre-commit to run isort, flake8, pydocstring, black ("uncompromising Python code formatter") and mypy when committing new code.

$ pre-commit install