Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pytest_collect_file hook to remove deprecated path argument #112

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pytest_pycodestyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ def pytest_configure(config):
config.addinivalue_line('markers', 'pycodestyle: mark tests to be checked by pycodestyle.')


def pytest_collect_file(file_path: pathlib.Path, path, parent):
def pytest_collect_file(file_path: pathlib.Path, parent):
"""Create a Collector for the given path, or None if not relevant.

See:
- https://docs.pytest.org/en/7.0.x/reference/reference.html#pytest.hookspec.pytest_collect_file
- https://docs.pytest.org/en/8.3.x/reference/reference.html#pytest.hookspec.pytest_collect_file
"""
config = parent.config
if config.getoption('pycodestyle') and file_path.suffix == '.py':
Expand Down