File: makefile

package info (click to toggle)
python-json-patch 1.19-3~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 244 kB
  • sloc: python: 973; makefile: 167; sh: 46
file content (17 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

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

test:
	python tests.py

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