diff options
| author | Jakub Paczkowski <jakub@paczkowski.eu> | 2015-11-07 14:57:56 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-02-17 09:44:18 -0500 |
| commit | d4dc775620fc57e962165eab98a77264e3dd16b2 (patch) | |
| tree | ef18bd2705ca738d087c4e725c489cffada1945d /docs/ref | |
| parent | 0db7e61076116c2d93d61f98ef31690542359e48 (diff) | |
Fixed #25735 -- Added support for test tags to DiscoverRunner.
Thanks Carl Meyer, Claude Paroz, and Simon Charette for review.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/django-admin.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 0fbad35bcf..87753b28bd 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -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`` -------------- |
