AbdealiJK added a comment.
pytest does have an equivalent `pytest.mark`, but it seems to be a little limited. It can only be used by doing: - It can be used with the decorator `pytest.mark.NAME` - It can be used by declaring the `pytestmark` attribute like `pytestmark = [pytest.mark.NAME1, pytest.mark.NAME2]` Hence, it can't detect custom defined attributes, and uses the special "pytestmark" keyword to do this. It'd be neat to make a plugin. TASK DETAIL https://phabricator.wikimedia.org/T135659 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: AbdealiJK Cc: AbdealiJK, Aklapper, Zppix, jayvdb, pywikibot-bugs-list, Jay8g, Krenair _______________________________________________ pywikibot-bugs mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/pywikibot-bugs
