Skip to content

Commit

Permalink
Run pylint directly
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-k committed Aug 14, 2024
1 parent a6474e6 commit 53cfd4f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
python -m flake8
- name: Check code with pylint
run: |
python -m pytest --pylint --pylint-rcfile=$(pwd)/pyproject.toml --pylint-jobs=0
python -m pylint --recursive=y --reports=y --verbose ./
- name: Check manifest
run: |
python -m check_manifest
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Run tests and style checks in this directory::
python -m isort .
python -m black rohrpost tests
python -m flake8
python -m pytest --pylint --pylint-rcfile=$(pwd)/pyproject.toml --pylint-jobs=0
python -m pylint --recursive=y --reports=y --verbose ./


.. _ASGI: https://channels.readthedocs.io/en/latest/asgi.html
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ profile = "black"

[tool.pylint."messages control"]
disable = [
"duplicate-code",
"missing-docstring",
]

Expand Down
1 change: 0 additions & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ Pygments~=2.18
pylint~=3.2
pytest~=8.3
pytest-cov~=5.0
pytest-pylint>=0.21
types-setuptools>=71.1.0.20240813

0 comments on commit 53cfd4f

Please sign in to comment.