Development - Contributing¶
Issues and pull requests are more than welcome: github.com/stac-utils/titiler-pgstac/issues
dev install
$ git clone https://github.com/stac-utils/titiler-pgstac.git
$ cd titiler
$ pip install pre-commit -e .["dev,test"]
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