Skip to content

Commit

Permalink
Always run pylint before testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenbe committed May 24, 2024
1 parent 671c476 commit 051505d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
mkfile_dir := $(dir $(mkfile_path))

test: ruff
test: pylint
python3 -m unittest discover $(mkfile_dir)/tests "*_test.py"

pylint:
pylint: ruff
pylint --disable=C0114,C0115,C0116,R0902,R0401 server.py comfospot40/*.py

ruff: black
Expand Down

0 comments on commit 051505d

Please sign in to comment.