best-doctor/import_me

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
test:
    python -m pytest

coverage:
    python -m pytest --cov=import_me --cov-report=xml

types:
    mypy .

style:
    flake8 .

readme:
    mdl README.md

requirements:
    safety check -r requirements.txt

check:
    make style
    make types
    make test
    make requirements