2019-10-10 12:55:35 +00:00
|
|
|
|
2019-10-10 15:15:58 +00:00
|
|
|
test: flake8 mypy pytest black_format_check
|
2019-10-10 12:55:35 +00:00
|
|
|
|
|
|
|
coverage:
|
|
|
|
pytest --cov .
|
|
|
|
|
2019-10-10 15:15:58 +00:00
|
|
|
format:
|
|
|
|
black *.py --line-length 100
|
|
|
|
|
|
|
|
black_format_check:
|
|
|
|
black *.py --line-length 100 --check
|
|
|
|
|
2019-10-10 12:55:35 +00:00
|
|
|
flake8:
|
2019-10-10 15:05:59 +00:00
|
|
|
flake8 *.py --ignore=E501,E266,E203,W503
|
2019-10-10 12:55:35 +00:00
|
|
|
|
|
|
|
pytest:
|
|
|
|
pytest
|
|
|
|
|
|
|
|
mypy:
|
|
|
|
mypy --pretty *.py
|