Other resources

  1. Fork and clone the repository.

    git clone https://github.com/<username>/hapideploy.git
    
  2. Install Python dependencies.

    poetry install
    
  3. Create a new branch from main and make some changes.

    git checkout -b feature-a
    
  4. Run static analysis.

    poetry run mypy src/ tests/ --check-untyped-defs
    
  5. Fix code style.

    poetry run autoflake --in-place --remove-unused-variables -r src/ tests/;
    poetry run black src/ tests/;
    poetry run isort src/ tests/;
    
  6. Run all tests.

    poetry run pytest
    
  7. Create a pull request into main.

Previous
Selector