You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pytest 8.1.0 was just released and broke Ci for jupyterlab:
pluggy._manager.PluginValidationError: Plugin 'check-links' for hook 'pytest_collect_file'
hookimpl definition: pytest_collect_file(path: 'Any', parent: 'pytest.Collector') -> 'CheckLinks | None'
Argument(s) {'path'} are declared in the hookimpl but can not be found in the hookspec
This is because pytest-dev/pytest#11757 removed the path parameter (there is file_path). It looks like a mistake in the docs saying that path was removed in 8.0 but in fact it was deprecated and had a legacy fallback, which I think is tracked in pytest-dev/pytest#12069
The text was updated successfully, but these errors were encountered:
Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! 🤗
If you haven't done so already, check out Jupyter's Code of Conduct. Also, please try to follow the issue template as it helps other other community members to contribute more effectively.
You can meet the other Jovyans by joining our Discourse forum. There is also an intro thread there where you can stop by and say Hi! 👋
pytest 8.1.0 was just released and broke Ci for jupyterlab:
jupyterlab/jupyterlab#15908
This is because pytest-dev/pytest#11757 removed the
path
parameter (there isfile_path
). It looks like a mistake in the docs saying thatpath
was removed in 8.0 but in fact it was deprecated and had a legacy fallback, which I think is tracked in pytest-dev/pytest#12069The text was updated successfully, but these errors were encountered: