We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
It would be useful if also classes / methods / functions with doctests could be marked:
import pytest @pytest.mark.custom_marker def return_true(): """Return True. >>> return_true() True """" return True
and then selected $ pytest -m custom_marker
$ pytest -m custom_marker