mirror of
https://github.com/drewkerrigan/nagios-http-json.git
synced 2024-11-22 02:13:47 +01:00
10 lines
220 B
Makefile
10 lines
220 B
Makefile
|
.PHONY: lint test coverage
|
||
|
|
||
|
lint:
|
||
|
python -m pylint check_http_json.py
|
||
|
test:
|
||
|
python -m unittest discover
|
||
|
coverage:
|
||
|
python -m coverage run -m unittest discover
|
||
|
python -m coverage report -m --include check_http_json.py
|