Other resources
Fork and clone the repository.
git clone https://github.com/<username>/hapideploy.gitInstall Python dependencies.
poetry installCreate a new branch from
mainand make some changes.git checkout -b feature-aRun static analysis.
poetry run mypy src/ tests/ --check-untyped-defsFix 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 pytestCreate a pull request into
main.