Fixed #25735 -- Added support for test tags to DiscoverRunner.

Thanks Carl Meyer, Claude Paroz, and Simon Charette for review.
This commit is contained in:
Jakub Paczkowski 2015-11-07 14:57:56 +01:00 committed by Tim Graham
parent 0db7e61076
commit d4dc775620
9 changed files with 162 additions and 9 deletions

View file

@ -1348,6 +1348,20 @@ don't.
in order to exchange them between processes. See
:ref:`python:pickle-picklable` for details.
.. option:: --tag TAGS
.. versionadded:: 1.10
Runs only tests :ref:`marked with the specified tags <topics-tagging-tests>`.
May be specified multiple times and combined with :option:`test --exclude-tag`.
.. option:: --exclude-tag EXCLUDE_TAGS
.. versionadded:: 1.10
Excludes tests :ref:`marked with the specified tags <topics-tagging-tests>`.
May be specified multiple times and combined with :option:`test --tag`.
``testserver``
--------------