Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 618 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (16 loc) · 618 Bytes

Development - Contributing

Issues and pull requests are more than welcome: https://github.com/stac-utils/titiler-pgstac/issues

dev install

$ git clone https://github.com/stac-utils/titiler-pgstac.git
$ cd titiler-pgstac
$ python -m pip install -e ".[dev,test,psycopg]"

You can then run the tests with the following command:

python -m pytest --cov titiler.pgstac --cov-report term-missing

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