We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09a7ec0 commit 3f73984Copy full SHA for 3f73984
Makefile
@@ -1,9 +1,11 @@
1
.PHONY: lint test coverage
2
3
+PYTHON_PATH?=python3
4
+
5
lint:
- python -m pylint check_http_json.py
6
+ $(PYTHON_PATH) -m pylint check_http_json.py
7
test:
- python -m unittest discover
8
+ $(PYTHON_PATH) -m unittest discover
9
coverage:
- python -m coverage run -m unittest discover
- python -m coverage report -m --include check_http_json.py
10
+ $(PYTHON_PATH) -m coverage run -m unittest discover
11
+ $(PYTHON_PATH) -m coverage report -m --include check_http_json.py
0 commit comments