qt5base-lts/util/cmake/Makefile
Alexandru Croitor 4ed483b0e2 CMake: pro2cmake: Fix errors reported by flake8 and mypy
Change-Id: I842c0f8d7ec1d173fa1dbd74e769e2c370e70518
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Cristian Adam <cristian.adam@qt.io>
2020-07-31 12:55:33 +02:00

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