Skip to content

Commit

Permalink
refactor: simplify pylint commands in tox.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwaller committed Jan 6, 2025
1 parent 52fe84f commit c15a9d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ warn_unreachable = true

[tool.pylint.master]
init-hook='import sys; sys.path.append(".")'
ignore = "test"
persistent = "no"
reports = "no"
allow-reexport-from-package = true
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ commands =
[testenv:pylint]
basepython = python3
commands =
pylint --jobs=0 xknx examples
pylint --jobs=0 --disable=protected-access,abstract-class-instantiated test
pylint xknx examples
pylint --disable=protected-access,abstract-class-instantiated test

[testenv:ruff]
basepython = python3
Expand Down

0 comments on commit c15a9d0

Please sign in to comment.