delfick / alt-pytest-asyncio

An alternative plugin for pytest to make it support async tests and fixtures
https://alt-pytest-asyncio.readthedocs.io
MIT License
27 stars 5 forks source link

Remove a namespace conflict that restricted parametrize names #18

Closed delfick closed 4 months ago

delfick commented 4 months ago

Prior to this the arguments that were given to test functions were limited by other arguments used when passing them around.

This is fixed by the use of the syntax introduced in PEP 570 to ensure those arguments specific to the plugin are positional only

Fixes #17