File: Makefile

package info (click to toggle)
python-multimethod 2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 168 kB
  • sloc: python: 731; makefile: 13
file content (14 lines) | stat: -rw-r--r-- 222 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
check:
	python -m pytest -s --cov

bench:
	python -m pytest --codspeed

lint:
	ruff check .
	ruff format --check .
	mypy -p multimethod
	mypy tests/static.py | grep -qv Any

html:
	PYTHONPATH=$(PWD) python -m mkdocs build