aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 14ecc6248b84f5fc7231bf6cca576694dd0379ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
test: flake8 mypy pytest black_format_check

coverage:
	pytest --cov .

format:
	black src/qmake2cmake/

black_format_check:
	black src/qmake2cmake/ --check

flake8:
	flake8 src/qmake2cmake/ --ignore=E501,E266,E203,W503,F541

pytest:
	pytest

mypy:
	mypy