summaryrefslogtreecommitdiffstats
path: root/util/cmake/Makefile
blob: f8fe4adf4ef608c56e6f6413d8794fb968b2d71f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

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