Other resources
Fork and clone the repository.
git clone https://github.com/<username>/hapideploy.git
Install Python dependencies.
poetry install
Create a new branch from
main
and make some changes.git checkout -b feature-a
Run static analysis.
poetry run mypy src/ tests/ --check-untyped-defs
Fix code style.
poetry run autoflake --in-place --remove-unused-variables -r src/ tests/; poetry run black src/ tests/; poetry run isort src/ tests/;
Run all tests.
poetry run pytest
Create a pull request into
main.