Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 429 Bytes

CONTRIBUTING.md

File metadata and controls

16 lines (12 loc) · 429 Bytes

Contributing

Set up dev environment:

cd ~/your/repository/fork  # Activate venv if you have one (recommended)
pip install -e .[dev]      # Install dev dependencies (e.g. black, mypy, pre-commit)
pre-commit install         # Install git pre-commit hooks

Run unit tests with coverage:

py.test --cov=dtags --cov-report=html  # Open htmlcov/index.html in your browser

Thank you for your contribution!