mirror of
https://github.com/drewkerrigan/nagios-http-json.git
synced 2024-11-22 18:33:49 +01:00
10 lines
224 B
Makefile
10 lines
224 B
Makefile
.PHONY: lint test coverage
|
|
|
|
lint:
|
|
python3 -m pylint check_http_json.py
|
|
test:
|
|
python3 -m unittest discover
|
|
coverage:
|
|
python3 -m coverage run -m unittest discover
|
|
python3 -m coverage report -m --include check_http_json.py
|