summaryrefslogtreecommitdiff
path: root/docs/ref/django-admin.txt
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2021-03-26 05:14:43 -0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-03-30 10:26:20 +0200
commit038940cf5525c41464a1b9e9ba3801042320b0cc (patch)
tree0972792e73a02a8b60ff86c22aa7cab46b956390 /docs/ref/django-admin.txt
parent7c08f26bf0439c1ed593b51b51ad847f7e262bc1 (diff)
Fixed #29127 -- Prevented DiscoverRunner from hiding tagged test with syntax errors.
This mades _FailedTest objects always match tags in DiscoverRunner.
Diffstat (limited to 'docs/ref/django-admin.txt')
-rw-r--r--docs/ref/django-admin.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 40ca4b0334..f942518353 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -1497,6 +1497,12 @@ don't.
Runs only tests :ref:`marked with the specified tags <topics-tagging-tests>`.
May be specified multiple times and combined with :option:`test --exclude-tag`.
+Tests that fail to load are always considered matching.
+
+.. versionchanged:: 4.0
+
+ In older versions, tests that failed to load did not match tags.
+
.. option:: --exclude-tag EXCLUDE_TAGS
Excludes tests :ref:`marked with the specified tags <topics-tagging-tests>`.