Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
reverbc committed Apr 11, 2021
1 parent c581816 commit 9757f9a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pylint_pytest/checkers/fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,11 @@ class FixtureChecker(BasePytestChecker):
'W6403': (
'Using a deprecated positional arguments for fixture',
'deprecated-positional-argument-for-pytest-fixture',
'Pass scope as a kwarg, not positional arg, which is deprecated in future pytest.'
'Take a look at: https://docs.pytest.org/en/stable/deprecations.html#pytest-fixture-arguments-are-keyword-only',
(
'Pass scope as a kwarg, not positional arg, which is deprecated in future pytest. '
'Take a look at: https://docs.pytest.org/en/stable/deprecations.html#pytest-fixture-arguments-are-keyword-only'
),
),
'F6401': (
(
'pylint-pytest plugin cannot enumerate and collect pytest fixtures. '
Expand Down

0 comments on commit 9757f9a

Please sign in to comment.