File: makefile

package info (click to toggle)
python-enamlx 0.6.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 388 kB
  • sloc: python: 3,338; makefile: 18
file content (15 lines) | stat: -rw-r--r-- 306 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
docs:
	cd docs
	make html
isort:
	isort enamlx examples
typecheck:
	mypy enamlx examples --ignore-missing-imports
lintcheck:
	flake8 --ignore=E501 enamlx examples
reformat:
	black enamlx examples
test:
	pytest -v tests --cov enamlx --cov-report xml --asyncio-mode auto

precommit: isort reformat lintcheck