Browse Source

Pylint must fail if the score < 7.5

pull/2/head
Jérôme Deuchnord 6 years ago
parent
commit
7ffa8cb5c1
No known key found for this signature in database GPG Key ID: 6D1B91F131F89577
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      .github/workflows/pythonapp.yml

+ 2
- 2
.github/workflows/pythonapp.yml View File

@@ -15,8 +15,8 @@ jobs:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv pylint pylintfileheader
python -m pip install --upgrade pip pipenv pylint-fail-under pylintfileheader
pipenv sync -d
- name: Lint
run: |
pylint *.py
pylint-fail-under --fail_under 7.5 *.py

Loading…
Cancel
Save