eugeniy / pytest-tornado

A py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications.
Apache License 2.0
121 stars 34 forks source link

plugin: Put custom CLI options in "tornado" group #53

Closed allanlewis closed 5 years ago

allanlewis commented 5 years ago

Previously, the command-line options were added to the default group, labelled "custom options" by Pytest. This commit puts the options in a group labelled "tornado options", separating them from other options in order to make it clear where they come from. This is especially useful in environments where multiple plugins are used.

vidartf commented 5 years ago

Thanks!