File: Makefile

package info (click to toggle)
endesive 2.19.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,128 kB
  • sloc: python: 18,368; xml: 800; sh: 195; javascript: 118; makefile: 23
file content (12 lines) | stat: -rw-r--r-- 449 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
test:
	rm -rf tests/fixtures/softhsm2 tests/fixtures/softhsm2.conf tests/fixtures/cert-* tests/fixtures/demo2_*
	vpython3 -m coverage run --omit "endesive/pdf/PyPDF2/*","endesive/pdf/PyPDF2_annotate/*","endesive/pdf/fpdf/*","endesive/pdf/pdf.py","/usr/lib/*" -m unittest discover tests
	vpy3-coverage3 report -m

mypy:
	mypy endesive --ignore-missing-imports --check-untyped --strict

docs:
	sphinx-apidoc -o docs ./endesive

.PHONY: test mypy docs