blob: c40b485e5b6d8214a6839c86611a483a341252f8 (
plain)
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
|