Skip to content

Commit

Permalink
Remove duplicate linting
Browse files Browse the repository at this point in the history
Code linting has a dedicated make target, as does testing.  However
previously, the testing target also ran a linting pass.  This is
unnecessary and slows down development, remove it from testing.

Signed-off-by: Chris Evich <[email protected]>
  • Loading branch information
cevich committed Aug 12, 2024
1 parent 559db70 commit 3d3298e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ lint: tox
.PHONY: tests
tests: tox
# see tox.ini for environment variable settings
$(PYTHON) -m tox -e pylint,coverage,py36,py38,py39,py310,py311
$(PYTHON) -m tox -e coverage,py36,py38,py39,py310,py311

.PHONY: unittest
unittest:
Expand Down

0 comments on commit 3d3298e

Please sign in to comment.