Skip to content

Commit

Permalink
pylint test folder as well
Browse files Browse the repository at this point in the history
  • Loading branch information
seebi committed Nov 9, 2023
1 parent f303475 commit 44cf557
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed

- race condition in deploy task (#19)
- pylint task ignored the test folder (the other linters did)


## [5.3.4] 2023-11-06
Expand Down
4 changes: 2 additions & 2 deletions src/Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ tasks:
desc: Find code smells, errors and style issues
<<: *preparation
cmds:
- poetry run pylint --exit-zero {{.PACKAGE}}
- poetry run pylint {{.PACKAGE}} {{.XML_PARAMS}}
- poetry run pylint --exit-zero tests {{.PACKAGE}}
- poetry run pylint tests {{.PACKAGE}} {{.XML_PARAMS}}
vars:
FORMAT: --output-format=pylint_junit.JUnitReporter
JUNIT_FILE: ./{{.DIST_DIR}}/junit-pylint.xml
Expand Down

0 comments on commit 44cf557

Please sign in to comment.