4ed483b0e2
Change-Id: I842c0f8d7ec1d173fa1dbd74e769e2c370e70518 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Cristian Adam <cristian.adam@qt.io>
21 lines
270 B
Makefile
21 lines
270 B
Makefile
|
|
test: flake8 mypy pytest black_format_check
|
|
|
|
coverage:
|
|
pytest --cov .
|
|
|
|
format:
|
|
black *.py --line-length 100
|
|
|
|
black_format_check:
|
|
black *.py --line-length 100 --check
|
|
|
|
flake8:
|
|
flake8 *.py --ignore=E501,E266,E203,W503,F541
|
|
|
|
pytest:
|
|
pytest
|
|
|
|
mypy:
|
|
mypy --pretty *.py
|