Makefile
test:
@pytest --cov=./scanapi --cov-report=xml
black:
@poetry run black -l 80 --check . --exclude=.venv
flake8:
@poetry run flake8 --ignore=E501,W501,E231,W503
mypy:
@poetry run mypy scanapi
gitlint:
@poetry run gitlint --ignore-stdin
check: black flake8 mypy gitlint