File: Makefile

package info (click to toggle)
python-fingerprints 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 920 kB
  • sloc: python: 1,290; makefile: 17
file content (20 lines) | stat: -rw-r--r-- 469 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

all: generate clean test

generate:
	python fingerprints/types/check.py
	python fingerprints/types/compile.py
	ruff format fingerprints/types/data.py

test:
	pytest --cov=fingerprints --cov-report html --cov-report term

typecheck:
	mypy --strict fingerprints/

clean:
	rm -rf dist build .eggs .mypy_cache
	find . -name '*.egg-info' -exec rm -fr {} +
	find . -name '*.egg' -exec rm -f {} +
	find . -name '*.pyc' -exec rm -f {} +
	find . -name '*.pyo' -exec rm -f {} +