Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 292 Bytes

DEVELOPMENT.md

File metadata and controls

20 lines (17 loc) · 292 Bytes

Development

Install dependencies

pip3 install .
pip3 install ".[test]"
pip3 install pytest-xdist
pre-commit install

Run linter and tests

black .
flake8
bandit -r openmeteo_requests/
pylint openmeteo_requests/
python3 -m pytest tests/
pre-commit run --all-files