File: makefile

package info (click to toggle)
python-json-pointer 1.10-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 224 kB
  • sloc: python: 449; makefile: 172; sh: 42
file content (17 lines) | stat: -rw-r--r-- 314 bytes parent folder | download | duplicates (4)
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 tests.py

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