File: Makefile

package info (click to toggle)
pyvows 3.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 500 kB
  • sloc: python: 3,884; makefile: 19; sh: 8
file content (13 lines) | stat: -rw-r--r-- 404 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
vows test:
	@env PYTHONPATH=. python3 pyvows/cli.py --cover --cover-package=pyvows --cover-threshold=80.0 --profile tests/

setup:
	@pip install --upgrade --editable .\[tests\]

coverage:
	@env PYTHONPATH=. python3 pyvows/cli.py --cover --cover-package=pyvows --cover-threshold=80.0 --cover-report=coverage.xml -x tests/

publish:
	python3 setup.py sdist upload

.PHONY: vows test setup coverage publish