nagios-http-json/Makefile
Markus Opolka 0572c2f494 Update Makefile
- Use python from venv
2022-09-08 10:01:23 +02:00

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