Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 404 Bytes

File metadata and controls

35 lines (24 loc) · 404 Bytes

Contributing

We welcome contributions!

Setup

python -m venv .venv
source .venv/bin/activate
pip install -e '.[dev]'

Run Checks

# Lint & Format
flake8 plugin
black --check plugin tests

# Tests
pytest -q

Continuous Integration

  • GitHub Actions runs:

    • flake8
    • black --check
    • pytest (with coverage)
  • Python versions: 3.8–3.12