pytest-dev / pluggy

A minimalist production ready plugin system
https://pluggy.readthedocs.io/en/latest/
MIT License
1.23k stars 121 forks source link

Fix broken Kedro hooks link #478

Closed simonw closed 6 months ago

simonw commented 6 months ago

The Kedro link on https://pluggy.readthedocs.io/en/stable/#more-real-world-examples

To see how pluggy is used in the real world, have a look at these projects documentation and source code:

Links to https://docs.kedro.org/en/latest/kedro.framework.hooks.specs.html which returns a 404 error

I think https://docs.kedro.org/en/latest/hooks/introduction.html is a better page to link to here.

simonw commented 6 months ago

The test failure here was from codecov which shouldn't be relevant to this change since it is documentation only.

simonw commented 6 months ago

I ran the Sphinx build locally to confirm that this produces the correct URL, and it does.

cd pluggy/docs
pip install -r requirements.txt
pip install -e ..
sphinx-build . out
open out/index.html