Closed
Description
While testing pluggy
off the branch from #72, I came across this error:
if '__multicall__' in hookimpl.argnames:
warnings.warn(
"Support for __multicall__ is now deprecated and will be"
"removed in an upcoming release.",
> warnings.DeprecationWarning
)
E AttributeError: module 'warnings' has no attribute 'DeprecationWarning'
Lines 656 to 661 in 557cd3f
And indeed warnings
module doesn't have a DeprecationWarning
.
We should add a test to catch this warnings (and any others we might have).