Skip to content

Commit

Permalink
Merge pull request #16 from NETWAYS/pyton_interpreter_name
Browse files Browse the repository at this point in the history
Use python3 in Makefile explicitely
  • Loading branch information
martialblog authored May 16, 2024
2 parents 70e4257 + 54b3a34 commit e15c5b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.PHONY: lint test coverage

lint:
python -m pylint check_brevisone.py
python3 -m pylint check_brevisone.py
test:
python -m unittest -v -b test_check_brevisone.py
python3 -m unittest -v -b test_check_brevisone.py
coverage:
python -m coverage run -m unittest test_check_brevisone.py
python -m coverage report -m --include check_brevisone.py
python3 -m coverage run -m unittest test_check_brevisone.py
python3 -m coverage report -m --include check_brevisone.py

0 comments on commit e15c5b4

Please sign in to comment.