Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 406 Bytes

CONTRIBUTING.md

File metadata and controls

27 lines (18 loc) · 406 Bytes

Contributing Guidelines

Coding Style

We can check coding style using flake8.

pip install -r requirements-dev.txt
flake8 swem
mypy swem

The above job contains following packages.

Testing

# Run tests and measure coverages.
coverage run -m pytest tests

# Output coverage report.
coverage report -m