Skip to content

Commit

Permalink
Remove pylint-pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
Shutgun committed Oct 2, 2023
1 parent e49c1b1 commit c5da117
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
flake8 . --count --exit-zero --statistics
- name: Lint with pylint
run: |
python -m pip install pylint pytest pylint-pytest
python -m pip install pylint pytest
python -m pip install -e .[test]
pylint --errors-only --score=n pytest_adaptavist
pylint --exit-zero --score=n --disable=E,R --max-line-length=160 --enable=useless-suppression pytest_adaptavist
pylint --errors-only --score=n --load-plugins pylint_pytest tests
pylint --exit-zero --score=n --disable=E,R,C0103 --max-line-length=160 --enable=useless-suppression --load-plugins pylint_pytest tests
pylint --errors-only --score=n tests
pylint --exit-zero --score=n --disable=E,R,C0103 --max-line-length=160 --enable=useless-suppression tests
- name: Lint with mypy
run: |
python -m pip install mypy types-requests types-setuptools
Expand Down

0 comments on commit c5da117

Please sign in to comment.