pytest-dev / pytest-repeat

pytest plugin for repeating test execution
https://pypi.python.org/pypi/pytest-repeat/
Other
169 stars 27 forks source link

Organize pytest arguments into a group #59

Open xmuskrat opened 1 year ago

xmuskrat commented 1 year ago

Pytest arguments are currently added to the custom arguments group using parser.addoption.

You can organize these into a pytest-repeat group so it's clear what options go with this module.

grouped_options = parser.getgroup("pytest-repeat")
grouped_options.addoption 
RonnyPfannschmidt commented 1 year ago

Would you like to contribute that change?

xmuskrat commented 1 year ago

Yes, I can do that.