Skip to content

Commit

Permalink
Disable problematic pylint-pytest check
Browse files Browse the repository at this point in the history
When  reverbc/pylint-pytest#22 gets merged we might
reenable this check.
  • Loading branch information
bruno-fs committed Feb 24, 2022
1 parent bea0cd0 commit 649cf8e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ load-plugins = [
"pylint_pytest",
]

[tool.pylint.messages_control]
disable = [
# flakeheaven lint with --diff parameter seems to be incompatible with this check
"cannot-enumerate-pytest-fixtures",
]

[tool.pytest.ini_options]
pythonpath = "quipucords/"
addopts = [
Expand All @@ -42,4 +48,4 @@ python_files = [
"test_*.py",
"*_tests.py",
"tests_*.py",
]
]

0 comments on commit 649cf8e

Please sign in to comment.