python-humanfriendly
python-humanfriendly copied to clipboard
Do not import setup in the tests module
pytest 7 and above will call any setup as a hook for any module collected, which in this case calls into the Sphinx machinery due to importing the setup function from there. Import it as something else so that pytest will not call it.
Fixes #64