File: Makefile

package info (click to toggle)
python-first 2.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 124 kB
  • sloc: python: 90; sh: 12; makefile: 7
file content (7 lines) | stat: -rw-r--r-- 165 bytes parent folder | download
1
2
3
4
5
6
7
test:
	python -m pytest --doctest-glob='*.rst' --doctest-modules --ignore=setup.py

cov:
	python -m pytest --cov first --cov-report=term-missing .

.PHONY: test cov