community/py3-docopt-ng: enable checks & claim maintainership
Congratulations for the latest 3.20 release, team!
I found a package I'm actively using had its tests disabled and thought was a good opportunity to give back.
py-docopt-ng is succesfully passing all its tests but pytest shows a PytestRemovedIn9Warning for the deprecated 'path' argument that is easily solved with:
-def pytest_collect_file(file_path: Path, path, parent): +def pytest_collect_file(file_path: Path, parent):
Background: Pytest is in the process of updating that function as documented in https://docs.pytest.org/en/8.2.x/deprecations.html#py-path-local-arguments-for-hooks-replaced-with-pathlib-path and https://docs.pytest.org/en/8.2.x/reference/reference.html#std-hook-pytest_collect_file
In the meantime, I'm submitting this merge request so we can properly run our necessary checks and I am creating an issue upstream so it could have a proper fix.