Skip to content

Commit

Permalink
pylint - use the pylintrc -file
Browse files Browse the repository at this point in the history
  • Loading branch information
JanneKiiskila committed Dec 19, 2023
1 parent fc95e9e commit 7255477
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ jobs:
sudo apt-get install pylint
echo "### pylint" >>$SUMMARY_FILE
pylint --version >>$SUMMARY_FILE
pylint --exit-zero --persistent=n tests/ izuma_systest_lib/ >pylint.log
pylintstats=$(scripts-internal/ci/more-lines-checker.sh ${{ github.event.repository.default_branch }} ${{ github.ref_name }} "pylint --exit-zero --persistent=n tests/ izuma_systest_lib/" pylint | tail -n3)
pylint --exit-zero --rcfile pylintrc --persistent=n tests/ izuma_systest_lib/ >pylint.log
pylintstats=$(scripts-internal/ci/more-lines-checker.sh ${{ github.event.repository.default_branch }} ${{ github.ref_name }} "pylint --exit-zero --rcfile pylintrc --persistent=n tests/ izuma_systest_lib/" pylint | tail -n3)
echo "$pylintstats" >>$SUMMARY_FILE
pylintscore=$(tail -2 pylint.log |head -1)
echo "$pylintscore" >>$SUMMARY_FILE
Expand Down

0 comments on commit 7255477

Please sign in to comment.