File: Makefile

package info (click to toggle)
debmutate 0.80
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 588 kB
  • sloc: python: 8,346; makefile: 12; sh: 1
file content (15 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
check:: testsuite style typing check-fmt

.PHONY: style testsuite unsupported

check-fmt::
	ruff format --check .

style::
	ruff check .

typing::
	mypy debmutate tests

testsuite::
	python3 -m unittest tests.test_suite