Skip to content

Commit

Permalink
PR-checker - fix how pylint is run on the more-lines-checker
Browse files Browse the repository at this point in the history
Folder names are not matching.
  • Loading branch information
JanneKiiskila committed Dec 19, 2023
1 parent 06c0fde commit 9b1a309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
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 systemtest-library test_cases" pylint | tail -n3)
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)
echo "$pylintstats" >>$SUMMARY_FILE
pylintscore=$(tail -3 pylint.log |head -1)
echo "$pylintscore" >>$SUMMARY_FILE
Expand Down

0 comments on commit 9b1a309

Please sign in to comment.