public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/python-django5] rawhide: Heavily reduce the list of skipped tests
@ 2026-06-29 14:05
0 siblings, 0 replies; only message in thread
From: @ 2026-06-29 14:05 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/python-django5
Branch : rawhide
Commit : 122bbf27a98949c0bdcb3b32c3d697fc4c21985d
Author : Miro Hrončok <miro@hroncok.cz>
Date : 2026-06-19T12:29:27+02:00
Stats : +7/-112 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/python-django5/c/122bbf27a98949c0bdcb3b32c3d697fc4c21985d?branch=rawhide
Log:
Heavily reduce the list of skipped tests
Now that https://github.com/python/cpython/issues/149671 is fixed,
we no longer need to skip so many tests with Python 3.15.
I assumed we could just remove skips,
but the following tests still error/fail:
======================================================================
ERROR: test_inclusion_admin_node_deferred_annotation (admin_views.test_templatetags.AdminTemplateTagsTest.test_inclusion_admin_node_deferred_annotation)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib64/python3.15/inspect.py", line 1292, in getfullargspec
sig = _signature_from_callable(func,
follow_wrapper_chains=False,
...<2 lines>...
eval_str=False,
annotation_format=annotation_format)
File "/usr/lib64/python3.15/inspect.py", line 2520, in _signature_from_callable
return _signature_from_function(sigcls, obj,
skip_bound_arg=skip_bound_arg,
globals=globals, locals=locals, eval_str=eval_str,
annotation_format=annotation_format)
File "/usr/lib64/python3.15/inspect.py", line 2343, in _signature_from_function
annotations = get_annotations(func, globals=globals, locals=locals, eval_str=eval_str,
format=annotation_format)
File "/usr/lib64/python3.15/annotationlib.py", line 987, in get_annotations
ann = _get_dunder_annotations(obj)
File "/usr/lib64/python3.15/annotationlib.py", line 1180, in _get_dunder_annotations
ann = getattr(obj, "__annotations__", None)
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/admin_views/test_templatetags.py", line 140, in __annotate__
def action(arg: SomeType = None): # NOQA: F821
^^^^^^^^
NameError: name 'SomeType' is not defined. Did you mean: 'TokenType'?
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/admin_views/test_templatetags.py", line 146, in test_inclusion_admin_node_deferred_annotation
InclusionAdminNode(
~~~~~~~~~~~~~~~~~~^
parser=object(),
^^^^^^^^^^^^^^^^
...<3 lines>...
takes_context=False,
^^^^^^^^^^^^^^^^^^^^
)
^
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/django/contrib/admin/templatetags/base.py", line 17, in __init__
getfullargspec(func)
~~~~~~~~~~~~~~^^^^^^
File "/usr/lib64/python3.15/inspect.py", line 1303, in getfullargspec
raise TypeError('unsupported callable') from ex
TypeError: unsupported callable
======================================================================
ERROR: test_inclusion_tag_deferred_annotation (template_tests.test_library.InclusionTagRegistrationTests.test_inclusion_tag_deferred_annotation)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib64/python3.15/inspect.py", line 1292, in getfullargspec
sig = _signature_from_callable(func,
follow_wrapper_chains=False,
...<2 lines>...
eval_str=False,
annotation_format=annotation_format)
File "/usr/lib64/python3.15/inspect.py", line 2520, in _signature_from_callable
return _signature_from_function(sigcls, obj,
skip_bound_arg=skip_bound_arg,
globals=globals, locals=locals, eval_str=eval_str,
annotation_format=annotation_format)
File "/usr/lib64/python3.15/inspect.py", line 2343, in _signature_from_function
annotations = get_annotations(func, globals=globals, locals=locals, eval_str=eval_str,
format=annotation_format)
File "/usr/lib64/python3.15/annotationlib.py", line 987, in get_annotations
ann = _get_dunder_annotations(obj)
File "/usr/lib64/python3.15/annotationlib.py", line 1180, in _get_dunder_annotations
ann = getattr(obj, "__annotations__", None)
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/template_tests/test_library.py", line 86, in __annotate__
def func(arg: SomeType): # NOQA: F821
^^^^^^^^
NameError: name 'SomeType' is not defined
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/template_tests/test_library.py", line 85, in test_inclusion_tag_deferred_annotation
@self.library.inclusion_tag("template.html")
~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/django/template/library.py", line 262, in dec
) = getfullargspec(unwrap(func))
~~~~~~~~~~~~~~^^^^^^^^^^^^^^
File "/usr/lib64/python3.15/inspect.py", line 1303, in getfullargspec
raise TypeError('unsupported callable') from ex
TypeError: unsupported callable
======================================================================
ERROR: test_simple_block_tag_deferred_annotation (template_tests.test_library.SimpleBlockTagRegistrationTests.test_simple_block_tag_deferred_annotation)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib64/python3.15/inspect.py", line 1292, in getfullargspec
sig = _signature_from_callable(func,
follow_wrapper_chains=False,
...<2 lines>...
eval_str=False,
annotation_format=annotation_format)
File "/usr/lib64/python3.15/inspect.py", line 2520, in _signature_from_callable
return _signature_from_function(sigcls, obj,
skip_bound_arg=skip_bound_arg,
globals=globals, locals=locals, eval_str=eval_str,
annotation_format=annotation_format)
File "/usr/lib64/python3.15/inspect.py", line 2343, in _signature_from_function
annotations = get_annotations(func, globals=globals, locals=locals, eval_str=eval_str,
format=annotation_format)
File "/usr/lib64/python3.15/annotationlib.py", line 987, in get_annotations
ann = _get_dunder_annotations(obj)
File "/usr/lib64/python3.15/annotationlib.py", line 1180, in _get_dunder_annotations
ann = getattr(obj, "__annotations__", None)
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/template_tests/test_library.py", line 169, in __annotate__
def func(content: SomeType): # NOQA: F821
^^^^^^^^
NameError: name 'SomeType' is not defined
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/template_tests/test_library.py", line 168, in test_simple_block_tag_deferred_annotation
@self.library.simple_block_tag
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/django/template/library.py", line 238, in simple_block_tag
return dec(func)
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/django/template/library.py", line 178, in dec
) = getfullargspec(unwrap(func))
~~~~~~~~~~~~~~^^^^^^^^^^^^^^
File "/usr/lib64/python3.15/inspect.py", line 1303, in getfullargspec
raise TypeError('unsupported callable') from ex
TypeError: unsupported callable
======================================================================
ERROR: test_tag_deferred_annotation (template_tests.test_library.SimpleTagRegistrationTests.test_tag_deferred_annotation)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib64/python3.15/inspect.py", line 1292, in getfullargspec
sig = _signature_from_callable(func,
follow_wrapper_chains=False,
...<2 lines>...
eval_str=False,
annotation_format=annotation_format)
File "/usr/lib64/python3.15/inspect.py", line 2520, in _signature_from_callable
return _signature_from_function(sigcls, obj,
skip_bound_arg=skip_bound_arg,
globals=globals, locals=locals, eval_str=eval_str,
annotation_format=annotation_format)
File "/usr/lib64/python3.15/inspect.py", line 2343, in _signature_from_function
annotations = get_annotations(func, globals=globals, locals=locals, eval_str=eval_str,
format=annotation_format)
File "/usr/lib64/python3.15/annotationlib.py", line 987, in get_annotations
ann = _get_dunder_annotations(obj)
File "/usr/lib64/python3.15/annotationlib.py", line 1180, in _get_dunder_annotations
ann = getattr(obj, "__annotations__", None)
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/template_tests/test_library.py", line 120, in __annotate__
def func(parser, token: SomeType): # NOQA: F821
^^^^^^^^
NameError: name 'SomeType' is not defined
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/template_tests/test_library.py", line 119, in test_tag_deferred_annotation
@self.library.simple_tag
^^^^^^^^^^^^^^^^^^^^^^^
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/django/template/library.py", line 154, in simple_tag
return dec(func)
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/django/template/library.py", line 122, in dec
) = getfullargspec(unwrap(func))
~~~~~~~~~~~~~~^^^^^^^^^^^^^^
File "/usr/lib64/python3.15/inspect.py", line 1303, in getfullargspec
raise TypeError('unsupported callable') from ex
TypeError: unsupported callable
======================================================================
ERROR: test_filter_deferred_annotation (template_tests.test_parser.ParserTests.test_filter_deferred_annotation)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib64/python3.15/inspect.py", line 1292, in getfullargspec
sig = _signature_from_callable(func,
follow_wrapper_chains=False,
...<2 lines>...
eval_str=False,
annotation_format=annotation_format)
File "/usr/lib64/python3.15/inspect.py", line 2520, in _signature_from_callable
return _signature_from_function(sigcls, obj,
skip_bound_arg=skip_bound_arg,
globals=globals, locals=locals, eval_str=eval_str,
annotation_format=annotation_format)
File "/usr/lib64/python3.15/inspect.py", line 2343, in _signature_from_function
annotations = get_annotations(func, globals=globals, locals=locals, eval_str=eval_str,
format=annotation_format)
File "/usr/lib64/python3.15/annotationlib.py", line 987, in get_annotations
ann = _get_dunder_annotations(obj)
File "/usr/lib64/python3.15/annotationlib.py", line 1180, in _get_dunder_annotations
ann = getattr(obj, "__annotations__", None)
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/template_tests/test_parser.py", line 160, in __annotate__
def example_filter(value: str, arg: SomeType): # NOQA: F821
^^^^^^^^
NameError: name 'SomeType' is not defined. Did you mean: 'TokenType'?
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/template_tests/test_parser.py", line 163, in test_filter_deferred_annotation
result = FilterExpression.args_check(
"example", example_filter, ["extra_example"]
)
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/django/template/base.py", line 765, in args_check
args, _, _, defaults, _, _, _ = inspect.getfullargspec(func)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^
File "/usr/lib64/python3.15/inspect.py", line 1303, in getfullargspec
raise TypeError('unsupported callable') from ex
TypeError: unsupported callable
======================================================================
ERROR: test_strip_tags (utils_tests.test_html.TestUtilsHtml.test_strip_tags)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/utils_tests/test_html.py", line 137, in test_strip_tags
sys.version_info >= min_fixed_security[sys.version_info[:2]]
~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
KeyError: (3, 15)
======================================================================
FAIL: test_invalid_choice_db_option (admin_scripts.tests.CommandDBOptionChoiceTests.test_invalid_choice_db_option)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib64/python3.15/argparse.py", line 2157, in _parse_known_args2
namespace, args = self._parse_known_args(args, namespace, intermixed)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib64/python3.15/argparse.py", line 2408, in _parse_known_args
start_index = consume_optional(start_index)
File "/usr/lib64/python3.15/argparse.py", line 2332, in consume_optional
take_action(action, args, option_string)
~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib64/python3.15/argparse.py", line 2218, in take_action
argument_values = self._get_values(action, argument_strings)
File "/usr/lib64/python3.15/argparse.py", line 2735, in _get_values
self._check_value(action, value)
~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^
File "/usr/lib64/python3.15/argparse.py", line 2806, in _check_value
raise ArgumentError(action, msg % args)
argparse.ArgumentError: argument --database: invalid choice: 'deflaut', maybe you meant 'default'? (choose from 'default', 'other')
During handling of the above exception, another exception occurred:
django.core.management.base.CommandError: Error: argument --database: invalid choice: 'deflaut', maybe you meant 'default'? (choose from 'default', 'other')
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/builddir/build/BUILD/python-django5-5.2.15-build/django-5.2.15/tests/admin_scripts/tests.py", line 2431, in test_invalid_choice_db_option
with self.assertRaisesRegex(CommandError, expected_error):
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: "Error: argument --database: invalid choice: 'deflaut' \(choose from '?default'?, '?other'?\)" does not match "Error: argument --database: invalid choice: 'deflaut', maybe you meant 'default'? (choose from 'default', 'other')"
----------------------------------------------------------------------
Ran 18181 tests in 575.028s
FAILED (failures=1, errors=6, skipped=1421, expected failures=5)
---
diff --git a/python-django5.spec b/python-django5.spec
index 9906520..8ccab29 100644
--- a/python-django5.spec
+++ b/python-django5.spec
@@ -190,118 +190,13 @@ cd tests
%{python3} runtests.py --settings=test_sqlite --verbosity=2
%else
%{python3} runtests.py --settings=test_sqlite --verbosity=2 -k "%{shrink:
- not admin_scripts.tests.ArgumentOrder.test_option_then_setting
- and not admin_scripts.tests.ArgumentOrder.test_option_then_setting_then_option
- and not admin_scripts.tests.ArgumentOrder.test_setting_then_option
- and not admin_scripts.tests.ArgumentOrder.test_setting_then_short_option
- and not admin_scripts.tests.ArgumentOrder.test_short_option_then_setting
- and not admin_scripts.tests.CommandDBOptionChoiceTests.test_invalid_choice_db_option
- and not admin_scripts.tests.CommandTypes.test_app_command
- and not admin_scripts.tests.CommandTypes.test_app_command_multiple_apps
- and not admin_scripts.tests.CommandTypes.test_base_command
- and not admin_scripts.tests.CommandTypes.test_base_command_multiple_label
- and not admin_scripts.tests.CommandTypes.test_base_command_no_label
- and not admin_scripts.tests.CommandTypes.test_base_command_with_option
- and not admin_scripts.tests.CommandTypes.test_base_command_with_options
- and not admin_scripts.tests.CommandTypes.test_help_default_options_with_custom_arguments
- and not admin_scripts.tests.CommandTypes.test_label_command
- and not admin_scripts.tests.CommandTypes.test_label_command_multiple_label
- and not admin_scripts.tests.CommandTypes.test_noargs
- and not admin_scripts.tests.CommandTypes.test_specific_help
- and not admin_scripts.tests.CommandTypes.test_suppress_base_options_command_defaults
- and not admin_scripts.tests.CommandTypes.test_suppress_base_options_command_help
- and not admin_scripts.tests.CommandTypes.test_version
- and not admin_scripts.tests.DiffSettings.test_all
- and not admin_scripts.tests.DiffSettings.test_basic
- and not admin_scripts.tests.DiffSettings.test_custom_default
- and not admin_scripts.tests.DiffSettings.test_dynamic_settings_configured
- and not admin_scripts.tests.DiffSettings.test_settings_configured
- and not admin_scripts.tests.DiffSettings.test_unified
- and not admin_scripts.tests.DiffSettings.test_unified_all
- and not admin_scripts.tests.DjangoAdminAlternateSettings.test_builtin_with_environment
- and not admin_scripts.tests.DjangoAdminAlternateSettings.test_builtin_with_settings
- and not admin_scripts.tests.DjangoAdminAlternateSettings.test_custom_command_with_environment
- and not admin_scripts.tests.DjangoAdminAlternateSettings.test_custom_command_with_settings
- and not admin_scripts.tests.DjangoAdminDefaultSettings.test_builtin_with_environment
- and not admin_scripts.tests.DjangoAdminDefaultSettings.test_builtin_with_settings
- and not admin_scripts.tests.DjangoAdminDefaultSettings.test_custom_command_with_environment
- and not admin_scripts.tests.DjangoAdminDefaultSettings.test_custom_command_with_settings
- and not admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_builtin_with_environment
- and not admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_builtin_with_settings
- and not admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_custom_command_with_environment
- and not admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_custom_command_with_settings
- and not admin_scripts.tests.DjangoAdminMultipleSettings.test_builtin_with_environment
- and not admin_scripts.tests.DjangoAdminMultipleSettings.test_builtin_with_settings
- and not admin_scripts.tests.DjangoAdminMultipleSettings.test_custom_command_with_environment
- and not admin_scripts.tests.DjangoAdminMultipleSettings.test_custom_command_with_settings
- and not admin_scripts.tests.DjangoAdminSettingsDirectory.test_builtin_with_environment
- and not admin_scripts.tests.DjangoAdminSettingsDirectory.test_builtin_with_settings
- and not admin_scripts.tests.DjangoAdminSettingsDirectory.test_setup_environ
- and not admin_scripts.tests.DjangoAdminSettingsDirectory.test_setup_environ_custom_template
- and not admin_scripts.tests.DjangoAdminSettingsDirectory.test_startapp_unicode_name
- and not admin_scripts.tests.ManageAlternateSettings.test_builtin_with_environment
- and not admin_scripts.tests.ManageAlternateSettings.test_builtin_with_settings
- and not admin_scripts.tests.ManageAlternateSettings.test_custom_command_output_color
- and not admin_scripts.tests.ManageAlternateSettings.test_custom_command_with_environment
- and not admin_scripts.tests.ManageAlternateSettings.test_custom_command_with_settings
- and not admin_scripts.tests.ManageCheck.test_app_with_import
- and not admin_scripts.tests.ManageCheck.test_complex_app
- and not admin_scripts.tests.ManageCheck.test_output_format
- and not admin_scripts.tests.ManageCheck.test_warning_does_not_halt
- and not admin_scripts.tests.ManageDefaultSettings.test_builtin_command
- and not admin_scripts.tests.ManageDefaultSettings.test_builtin_with_environment
- and not admin_scripts.tests.ManageDefaultSettings.test_builtin_with_settings
- and not admin_scripts.tests.ManageDefaultSettings.test_custom_command
- and not admin_scripts.tests.ManageDefaultSettings.test_custom_command_with_environment
- and not admin_scripts.tests.ManageDefaultSettings.test_custom_command_with_settings
- and not admin_scripts.tests.ManageFullPathDefaultSettings.test_builtin_command
- and not admin_scripts.tests.ManageFullPathDefaultSettings.test_builtin_with_environment
- and not admin_scripts.tests.ManageFullPathDefaultSettings.test_builtin_with_settings
- and not admin_scripts.tests.ManageFullPathDefaultSettings.test_custom_command
- and not admin_scripts.tests.ManageFullPathDefaultSettings.test_custom_command_with_environment
- and not admin_scripts.tests.ManageFullPathDefaultSettings.test_custom_command_with_settings
- and not admin_scripts.tests.ManageMultipleSettings.test_builtin_with_environment
- and not admin_scripts.tests.ManageMultipleSettings.test_builtin_with_settings
- and not admin_scripts.tests.ManageMultipleSettings.test_custom_command_with_environment
- and not admin_scripts.tests.ManageMultipleSettings.test_custom_command_with_settings
- and not admin_scripts.tests.ManageSettingsWithSettingsErrors.test_help
- and not admin_scripts.tests.StartApp.test_template
- and not admin_scripts.tests.StartApp.test_trailing_slash_in_target_app_directory_name
- and not admin_scripts.tests.StartProject.test_custom_project_template
- and not admin_scripts.tests.StartProject.test_custom_project_template_context_variables
- and not admin_scripts.tests.StartProject.test_custom_project_template_exclude_directory
- and not admin_scripts.tests.StartProject.test_custom_project_template_from_tarball_by_path
- and not admin_scripts.tests.StartProject.test_custom_project_template_from_tarball_by_url
- and not admin_scripts.tests.StartProject.test_custom_project_template_from_tarball_by_url_django_user_agent
- and not admin_scripts.tests.StartProject.test_custom_project_template_from_tarball_to_alternative_location
- and not admin_scripts.tests.StartProject.test_custom_project_template_hidden_directory_default_excluded
- and not admin_scripts.tests.StartProject.test_custom_project_template_hidden_directory_included
- and not admin_scripts.tests.StartProject.test_custom_project_template_non_python_files_not_formatted
- and not admin_scripts.tests.StartProject.test_custom_project_template_with_non_ascii_templates
- and not admin_scripts.tests.StartProject.test_file_without_extension
- and not admin_scripts.tests.StartProject.test_honor_umask
- and not admin_scripts.tests.StartProject.test_no_escaping_of_project_variables
- and not admin_scripts.tests.StartProject.test_project_template_tarball_url
- and not admin_scripts.tests.StartProject.test_simple_project
- and not admin_scripts.tests.StartProject.test_simple_project_different_directory
- and not admin_scripts.tests.StartProject.test_template_dir_with_trailing_slash
- and not logging_tests.tests.SettingsConfigTest.test_circular_dependency
- and not logging_tests.tests.SettingsCustomLoggingTest.test_custom_logging
- and not staticfiles_tests.test_management.TestCollectionHelpSubcommand.test_missing_settings_dont_prevent_help
- and not test_runner.tests.CustomTestRunnerOptionsCmdlineTests.test_no_testrunner
- and not test_runner.tests.CustomTestRunnerOptionsCmdlineTests.test_testrunner_equals
- and not test_runner.tests.CustomTestRunnerOptionsCmdlineTests.test_testrunner_option
- and not test_runner.tests.CustomTestRunnerOptionsSettingsTests.test_all_options_given
- and not test_runner.tests.CustomTestRunnerOptionsSettingsTests.test_default_and_given_options
- and not test_runner.tests.CustomTestRunnerOptionsSettingsTests.test_default_options
- and not test_runner.tests.CustomTestRunnerOptionsSettingsTests.test_option_name_and_value_separated
- and not test_runner.tests.Ticket17477RegressionTests.test_ticket_17477
- and not urlpatterns_reverse.tests.ReverseLazySettingsTest.test_lazy_in_settings
- and not user_commands.tests.CommandRunTests.test_disallowed_abbreviated_options
- and not user_commands.tests.CommandRunTests.test_script_prefix_set_in_commands
- and not user_commands.tests.CommandRunTests.test_skip_checks
- and not user_commands.tests.CommandRunTests.test_subparser_error_formatting
- and not user_commands.tests.CommandRunTests.test_subparser_non_django_error_formatting
+ not admin_scripts.tests.CommandDBOptionChoiceTests.test_invalid_choice_db_option
+ and not admin_views.test_templatetags.AdminTemplateTagsTest.test_inclusion_admin_node_deferred_annotation
+ and not template_tests.test_library.InclusionTagRegistrationTests.test_inclusion_tag_deferred_annotation
+ and not template_tests.test_library.SimpleBlockTagRegistrationTests.test_simple_block_tag_deferred_annotation
+ and not template_tests.test_library.SimpleTagRegistrationTests.test_tag_deferred_annotation
+ and not template_tests.test_parser.ParserTests.test_filter_deferred_annotation
+ and not utils_tests.test_html.TestUtilsHtml.test_strip_tags
}"
%endif
%endif
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-29 14:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-29 14:05 [rpms/python-django5] rawhide: Heavily reduce the list of skipped tests
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox