nagios-http-json/Makefile

12 lines
274 B
Makefile
Raw Permalink Normal View History

2022-09-08 10:01:23 +02:00
.PHONY: lint test coverage
PYTHON_PATH?=python3
2022-09-08 10:01:23 +02:00
lint:
$(PYTHON_PATH) -m pylint check_http_json.py
2022-09-08 10:01:23 +02:00
test:
$(PYTHON_PATH) -m unittest discover
2022-09-08 10:01:23 +02:00
coverage:
$(PYTHON_PATH) -m coverage run -m unittest discover
$(PYTHON_PATH) -m coverage report -m --include check_http_json.py