File: makefile

package info (click to toggle)
python-json-pointer 2.4-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 212 kB
  • sloc: python: 598; makefile: 163; sh: 19
file content (17 lines) | stat: -rw-r--r-- 316 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

help:
	@echo "jsonpointer"
	@echo "Makefile targets"
	@echo " - test: run tests"
	@echo " - coverage: run tests with coverage"
	@echo
	@echo "To install jsonpointer, type"
	@echo "  python setup.py install"
	@echo

test:
	python -munittest

coverage:
	coverage run --source=jsonpointer tests.py
	coverage report -m