Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 1978930 Details for
Bug 2226178
python-django-extensions: FTBFS in Fedora rawhide/f39
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh89 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
build.log
build.log (text/plain), 32.00 KB, created by
Fedora Release Engineering
on 2023-07-25 19:14:55 UTC
(
hide
)
Description:
build.log
Filename:
MIME Type:
Creator:
Fedora Release Engineering
Created:
2023-07-25 19:14:55 UTC
Size:
32.00 KB
patch
obsolete
>get_imported_objects({}) >django_extensions/management/commands/shell_plus.py:142: in get_imported_objects > imported_objects = import_objects(options, self.style) >django_extensions/management/shells.py:314: in import_objects > import_subclasses() >django_extensions/management/shells.py:230: in import_subclasses > perform_automatic_imports(SubclassesFinder(base_classes_to_import).collect_subclasses()) >django_extensions/import_subclasses.py:43: in collect_subclasses > subclasses_from_module = self._collect_classes_from_module(module_name) >django_extensions/import_subclasses.py:52: in _collect_classes_from_module > imported_module = import_module(module_name) >/usr/lib64/python3.12/importlib/__init__.py:90: in import_module > return _bootstrap._gcd_import(name[level:], package, level) ><frozen importlib._bootstrap>:1293: in _gcd_import > ??? ><frozen importlib._bootstrap>:1266: in _find_and_load > ??? ><frozen importlib._bootstrap>:1237: in _find_and_load_unlocked > ??? ><frozen importlib._bootstrap>:841: in _load_unlocked > ??? ><frozen importlib._bootstrap_external>:994: in exec_module > ??? ><frozen importlib._bootstrap>:400: in _call_with_frames_removed > ??? >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > # -*- coding: utf-8 -*- >> import asyncore >E ModuleNotFoundError: No module named 'asyncore' >django_extensions/management/commands/mail_debug.py:2: ModuleNotFoundError >_______ HighlightTagTests.test_should_highlight_bash_syntax_without_name _______ >self = <tests.templatetags.test_highlighting.HighlightTagTests testMethod=test_should_highlight_bash_syntax_without_name> > def test_should_highlight_bash_syntax_without_name(self): > content = """{% load highlighting %} > {% highlight 'bash' %} > echo "Hello $1" > {% endhighlight %}""" > expected_result = '''<div class="highlight"><pre><span></span><span class="nb">echo</span> <span class="s2">"Hello </span><span class="nv">$1</span><span class="s2">"</span> > </pre></div>''' > > result = Template(content).render(self.ctx) > >> self.assertHTMLEqual(result, expected_result) >tests/templatetags/test_highlighting.py:52: >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >/usr/lib/python3.12/site-packages/django/test/testcases.py:1044: in assertHTMLEqual > self.fail(self._formatMessage(msg, standardMsg)) >E AssertionError: <div class="highlight"> >E <pre> >E <span><span class="nb"> >E echo >E </span><span class="w [truncated]... != <div class="highlight"> >E <pre> >E <span><span class="nb"> >E echo >E </span><span class="s [truncated]... >E <div class="highlight"> >E <pre> >E <span><span class="nb"> >E echo >E - </span><span class="w"><span class="s2"> >E ? ---------------- >E >E + </span><span class="s2"> >E "Hello >E </span><span class="nv"> >E $1 >E </span><span class="s2"> >E " >E </span> >E </pre> >E </div> >_________________________ test_initialize_mail_server __________________________ > def test_initialize_mail_server(): >> with mock.patch('django_extensions.management.commands.mail_debug.asyncore.loop') as loop: >tests/management/commands/test_mail_debug.py:7: >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >/usr/lib64/python3.12/unittest/mock.py:1439: in __enter__ > self.target = self.getter() >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >name = 'django_extensions.management.commands.mail_debug.asyncore' > def resolve_name(name): > """ > Resolve a name to an object. > > It is expected that `name` will be a string in one of the following > formats, where W is shorthand for a valid Python identifier and dot stands > for a literal period in these pseudo-regexes: > > W(.W)* > W(.W)*:(W(.W)*)? > > The first form is intended for backward compatibility only. It assumes that > some part of the dotted name is a package, and the rest is an object > somewhere within that package, possibly nested inside other objects. > Because the place where the package stops and the object hierarchy starts > can't be inferred by inspection, repeated attempts to import must be done > with this form. > > In the second form, the caller makes the division point clear through the > provision of a single colon: the dotted name to the left of the colon is a > package to be imported, and the dotted name to the right is the object > hierarchy within that package. Only one import is needed in this form. If > it ends with the colon, then a module object is returned. > > The function will return an object (which might be a module), or raise one > of the following exceptions: > > ValueError - if `name` isn't in a recognised format > ImportError - if an import failed when it shouldn't have > AttributeError - if a failure occurred when traversing the object hierarchy > within the imported package to get to the desired object. > """ > global _NAME_PATTERN > if _NAME_PATTERN is None: > # Lazy import to speedup Python startup time > import re > dotted_words = r'(?!\d)(\w+)(\.(?!\d)(\w+))*' > _NAME_PATTERN = re.compile(f'^(?P<pkg>{dotted_words})' > f'(?P<cln>:(?P<obj>{dotted_words})?)?$', > re.UNICODE) > > m = _NAME_PATTERN.match(name) > if not m: > raise ValueError(f'invalid format: {name!r}') > gd = m.groupdict() > if gd.get('cln'): > # there is a colon - a one-step import is all that's needed > mod = importlib.import_module(gd['pkg']) > parts = gd.get('obj') > parts = parts.split('.') if parts else [] > else: > # no colon - have to iterate to find the package boundary > parts = name.split('.') > modname = parts.pop(0) > # first part *must* be a module/package. > mod = importlib.import_module(modname) > while parts: > p = parts[0] > s = f'{modname}.{p}' > try: > mod = importlib.import_module(s) > parts.pop(0) > modname = s > except ImportError: > break > # if we reach this point, mod is the module, already imported, and > # parts is the list of parts in the object hierarchy to be traversed, or > # an empty list if just the module is wanted. > result = mod > for p in parts: >> result = getattr(result, p) >E AttributeError: module 'django_extensions.management.commands' has no attribute 'mail_debug' >/usr/lib64/python3.12/pkgutil.py:528: AttributeError >=============================== warnings summary =============================== >../../../../usr/lib/python3.12/site-packages/django/conf/__init__.py:241 > /usr/lib/python3.12/site-packages/django/conf/__init__.py:241: RemovedInDjango50Warning: The default value of USE_TZ will change from False to True in Django 5.0. Set USE_TZ to False in your project settings if you want to keep the current default behavior. > warnings.warn( >../../../../usr/lib/python3.12/site-packages/django/db/models/options.py:210 >tests/test_admin_filter.py::NullFieldListFilterTests::test_choices > /usr/lib/python3.12/site-packages/django/db/models/options.py:210: RemovedInDjango51Warning: 'index_together' is deprecated. Use 'Meta.indexes' in 'testapp.SqlDiff' instead. > warnings.warn( >../../../../usr/lib/python3.12/site-packages/_distutils_hack/__init__.py:33 > /usr/lib/python3.12/site-packages/_distutils_hack/__init__.py:33: UserWarning: Setuptools is replacing distutils. > warnings.warn("Setuptools is replacing distutils.") >django_extensions/management/commands/pipchecker.py:18 >django_extensions/management/commands/pipchecker.py:18 > /builddir/build/BUILD/django-extensions-3.2.1/django_extensions/management/commands/pipchecker.py:18: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. > if LooseVersion(pip.__version__) >= LooseVersion('19.0'): >../../../../usr/lib/python3.12/site-packages/pkg_resources/__init__.py:121 > /usr/lib/python3.12/site-packages/pkg_resources/__init__.py:121: DeprecationWarning: pkg_resources is deprecated as an API > warnings.warn("pkg_resources is deprecated as an API", DeprecationWarning) >../../../../usr/lib/python3.12/site-packages/pkg_resources/__init__.py:2870 >../../../../usr/lib/python3.12/site-packages/pkg_resources/__init__.py:2870 >../../../../usr/lib/python3.12/site-packages/pkg_resources/__init__.py:2870 >../../../../usr/lib/python3.12/site-packages/pkg_resources/__init__.py:2870 >../../../../usr/lib/python3.12/site-packages/pkg_resources/__init__.py:2870 >../../../../usr/lib/python3.12/site-packages/pkg_resources/__init__.py:2870 > /usr/lib/python3.12/site-packages/pkg_resources/__init__.py:2870: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('sphinxcontrib')`. > Implementing implicit namespace packages (as specified in PEP 420) is preferred to `pkg_resources.declare_namespace`. See https://setuptools.pypa.io/en/latest/references/keywords.html#keyword-namespace-packages > declare_namespace(pkg) >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsExceptionsTests::test_should_raise_CommandEror_if_more_than_one_migration_matches_to_given_arg >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsExceptionsTests::test_should_raise_CommandEror_if_squashed_migration_not_found >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsExceptionsTests::test_should_raise_CommandEror_if_squashed_migration_not_foundee >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsExceptionsTests::test_should_raise_CommandError_if_app_does_not_have_migrations >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsExceptionsTests::test_should_raise_CommandError_when_database_does_not_exist >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsTests::test_should_delete_squashed_migrations >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsTests::test_should_delete_squashed_migrations_if_interactive_mode_is_set_to_False >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsTests::test_should_not_delete_anything >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsTests::test_should_not_delete_files_for_given_squashed_migration > /usr/lib/python3.12/site-packages/django/db/models/base.py:366: RuntimeWarning: Model 'testapp_with_appconfig.titlemodel' was already registered. Reloading models is not advised as it can lead to inconsistencies, most notably with related models. > new_class._meta.apps.register_model(new_class._meta.app_label, new_class) >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsExceptionsTests::test_should_raise_CommandEror_if_squashed_migration_not_found >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsTests::test_should_delete_squashed_migrations_if_interactive_mode_is_set_to_False >tests/management/commands/test_delete_squashed_migrations.py::DeleteSquashedMigrationsTests::test_should_not_delete_files_for_given_squashed_migration > /usr/lib/python3.12/site-packages/django/db/models/base.py:366: RuntimeWarning: Model 'testapp_with_appconfig.namemodel' was already registered. Reloading models is not advised as it can lead to inconsistencies, most notably with related models. > new_class._meta.apps.register_model(new_class._meta.app_label, new_class) >tests/management/commands/test_describe_form.py::DescribeFormTests::test_should_print_form_definition_for_TestModel_with_non_editable_field >tests/management/commands/test_describe_form.py::DescribeFormTests::test_should_print_form_with_fields_for_TestModel > /usr/lib/python3.12/site-packages/django/db/models/base.py:366: RuntimeWarning: Model 'testapp.basemodel' was already registered. Reloading models is not advised as it can lead to inconsistencies, most notably with related models. > new_class._meta.apps.register_model(new_class._meta.app_label, new_class) >tests/management/commands/test_describe_form.py::DescribeFormTests::test_should_print_form_definition_for_TestModel_with_non_editable_field >tests/management/commands/test_describe_form.py::DescribeFormTests::test_should_print_form_with_fields_for_TestModel > /usr/lib/python3.12/site-packages/django/db/models/base.py:366: RuntimeWarning: Model 'testapp.noneditablemodel' was already registered. Reloading models is not advised as it can lead to inconsistencies, most notably with related models. > new_class._meta.apps.register_model(new_class._meta.app_label, new_class) >tests/management/commands/test_drop_test_database.py: 11 warnings >tests/management/commands/test_reset_db.py: 3 warnings >tests/management/commands/test_reset_schema.py: 1 warning >tests/management/commands/test_sqlcreate.py: 6 warnings >tests/management/commands/test_sqldsn.py: 13 warnings > /usr/lib64/python3.12/unittest/case.py:589: UserWarning: Overriding setting DATABASES can lead to unexpected behavior. > if method() is not None: >tests/management/commands/test_reset_db.py::ResetDbSqlite3Tests::test_should_cancel_reset_db_if_input_is_different_than_yes >tests/management/commands/test_reset_db.py::ResetDbMysqlTests::test_should_cancel_reset_db_if_input_is_different_than_yes >tests/management/commands/test_reset_db.py::ResetDbPostgresqlTests::test_should_cancel_reset_db_if_input_is_different_than_yes >tests/management/commands/test_reset_schema.py::ResetSchemaTests::test_should_cancel_reset_schema_and_print_info_if_input_is_different_than_yes > /usr/lib/python3.12/site-packages/_pytest/unittest.py:157: UserWarning: Overriding setting DATABASES can lead to unexpected behavior. > setup() >tests/management/commands/test_update_permissions.py::UpdatePermissionsTests::test_should_reload_permission_only_for_specified_apps >tests/management/commands/test_update_permissions.py::UpdatePermissionsTests::test_should_update_permission_if_name_changed >tests/management/commands/test_update_permissions.py::UpdatePermissionsTests::test_works > /usr/lib/python3.12/site-packages/django/db/models/base.py:366: RuntimeWarning: Model 'django_extensions.permmodel' was already registered. Reloading models is not advised as it can lead to inconsistencies, most notably with related models. > new_class._meta.apps.register_model(new_class._meta.app_label, new_class) >tests/management/commands/test_update_permissions.py::UpdatePermissionsTests::test_should_reload_permission_only_for_specified_apps >tests/management/commands/test_update_permissions.py::UpdatePermissionsTests::test_should_update_permission_if_name_changed >tests/management/commands/test_update_permissions.py::UpdatePermissionsTests::test_works > /usr/lib/python3.12/site-packages/django/db/models/base.py:366: RuntimeWarning: Model 'testapp.testmodel' was already registered. Reloading models is not advised as it can lead to inconsistencies, most notably with related models. > new_class._meta.apps.register_model(new_class._meta.app_label, new_class) >tests/management/commands/test_generate_password.py::test_without_args > /builddir/build/BUILD/django-extensions-3.2.1/django_extensions/management/commands/generate_password.py:30: RemovedInDjango51Warning: BaseUserManager.make_random_password() is deprecated. > return manager.make_random_password() >tests/management/commands/test_generate_password.py::test_with_length_args > /builddir/build/BUILD/django-extensions-3.2.1/django_extensions/management/commands/generate_password.py:28: RemovedInDjango51Warning: BaseUserManager.make_random_password() is deprecated. > return manager.make_random_password(length) >tests/management/commands/test_print_settings.py::test_without_args >tests/management/commands/test_print_settings.py::test_with_setting_args >tests/management/commands/test_print_settings.py::test_with_setting_wildcard >tests/management/commands/test_print_settings.py::test_with_setting_fail >tests/management/commands/test_print_settings.py::test_with_multiple_setting_args >tests/management/commands/test_print_settings.py::test_format >tests/management/commands/test_print_settings.py::test_format_json_without_indent > /usr/lib/python3.12/site-packages/django/conf/__init__.py:193: RemovedInDjango51Warning: The DEFAULT_FILE_STORAGE setting is deprecated. Use STORAGES instead. > self._show_deprecation_warning( >tests/management/commands/test_print_settings.py::test_without_args >tests/management/commands/test_print_settings.py::test_with_setting_args >tests/management/commands/test_print_settings.py::test_with_setting_wildcard >tests/management/commands/test_print_settings.py::test_with_setting_fail >tests/management/commands/test_print_settings.py::test_with_multiple_setting_args >tests/management/commands/test_print_settings.py::test_format >tests/management/commands/test_print_settings.py::test_format_json_without_indent > /usr/lib/python3.12/site-packages/django/conf/__init__.py:201: RemovedInDjango51Warning: The STATICFILES_STORAGE setting is deprecated. Use STORAGES instead. > self._show_deprecation_warning( >tests/management/commands/test_print_settings.py::test_without_args >tests/management/commands/test_print_settings.py::test_with_setting_args >tests/management/commands/test_print_settings.py::test_with_setting_wildcard >tests/management/commands/test_print_settings.py::test_with_setting_fail >tests/management/commands/test_print_settings.py::test_with_multiple_setting_args >tests/management/commands/test_print_settings.py::test_format >tests/management/commands/test_print_settings.py::test_format_json_without_indent > /usr/lib/python3.12/site-packages/django/conf/__init__.py:178: RemovedInDjango50Warning: The USE_L10N setting is deprecated. Starting with Django 5.0, localized formatting of data will always be enabled. For example Django will display numbers and dates using the format of the current locale. > self._show_deprecation_warning( >-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html >----------- coverage: platform linux, python 3.12.0-beta-4 ----------- >Name Stmts Miss Cover >----------------------------------------------------------------------------------------- >django_extensions/__init__.py 11 1 91% >django_extensions/admin/__init__.py 89 61 31% >django_extensions/admin/filter.py 27 0 100% >django_extensions/admin/widgets.py 46 1 98% >django_extensions/apps.py 4 0 100% >django_extensions/auth/__init__.py 0 0 100% >django_extensions/auth/mixins.py 9 0 100% >django_extensions/collision_resolvers.py 123 2 98% >django_extensions/compat.py 37 12 68% >django_extensions/db/__init__.py 0 0 100% >django_extensions/db/fields/__init__.py 341 54 84% >django_extensions/db/fields/json.py 53 6 89% >django_extensions/db/models.py 49 0 100% >django_extensions/import_subclasses.py 33 4 88% >django_extensions/jobs/__init__.py 0 0 100% >django_extensions/jobs/daily/__init__.py 0 0 100% >django_extensions/jobs/daily/cache_cleanup.py 13 0 100% >django_extensions/jobs/daily/daily_cleanup.py 7 0 100% >django_extensions/jobs/hourly/__init__.py 0 0 100% >django_extensions/jobs/minutely/__init__.py 0 0 100% >django_extensions/jobs/monthly/__init__.py 0 0 100% >django_extensions/jobs/weekly/__init__.py 0 0 100% >django_extensions/jobs/yearly/__init__.py 0 0 100% >django_extensions/logging/__init__.py 0 0 100% >django_extensions/logging/filters.py 24 0 100% >django_extensions/management/__init__.py 0 0 100% >django_extensions/management/base.py 11 0 100% >django_extensions/management/color.py 21 0 100% >django_extensions/management/commands/__init__.py 0 0 100% >django_extensions/management/commands/admin_generator.py 190 16 92% >django_extensions/management/commands/clean_pyc.py 28 1 96% >django_extensions/management/commands/clear_cache.py 24 0 100% >django_extensions/management/commands/compile_pyc.py 27 1 96% >django_extensions/management/commands/create_command.py 63 0 100% >django_extensions/management/commands/create_jobs.py 47 2 96% >django_extensions/management/commands/create_template_tags.py 50 5 90% >django_extensions/management/commands/delete_squashed_migrations.py 111 21 81% >django_extensions/management/commands/describe_form.py 46 1 98% >django_extensions/management/commands/drop_test_database.py 117 3 97% >django_extensions/management/commands/dumpscript.py 318 42 87% >django_extensions/management/commands/export_emails.py 95 12 87% >django_extensions/management/commands/find_template.py 15 0 100% >django_extensions/management/commands/generate_password.py 19 2 89% >django_extensions/management/commands/generate_secret_key.py 10 0 100% >django_extensions/management/commands/graph_models.py 130 51 61% >django_extensions/management/commands/list_model_info.py 80 15 81% >django_extensions/management/commands/list_signals.py 39 1 97% >django_extensions/management/commands/mail_debug.py 56 55 2% >django_extensions/management/commands/managestate.py 92 14 85% >django_extensions/management/commands/merge_model_instances.py 141 23 84% >django_extensions/management/commands/notes.py 46 0 100% >django_extensions/management/commands/pipchecker.py 209 170 19% >django_extensions/management/commands/print_settings.py 42 6 86% >django_extensions/management/commands/print_user_for_session.py 42 0 100% >django_extensions/management/commands/raise_test_exception.py 10 0 100% >django_extensions/management/commands/reset_db.py 113 7 94% >django_extensions/management/commands/reset_schema.py 38 2 95% >django_extensions/management/commands/runjob.py 40 0 100% >django_extensions/management/commands/runjobs.py 63 6 90% >django_extensions/management/commands/runprofileserver.py 192 171 11% >django_extensions/management/commands/runscript.py 210 34 84% >django_extensions/management/commands/runserver_plus.py 324 122 62% >django_extensions/management/commands/set_default_site.py 46 0 100% >django_extensions/management/commands/set_fake_emails.py 55 0 100% >django_extensions/management/commands/set_fake_passwords.py 29 0 100% >django_extensions/management/commands/shell_plus.py 388 207 47% >django_extensions/management/commands/show_template_tags.py 74 5 93% >django_extensions/management/commands/show_urls.py 145 30 79% >django_extensions/management/commands/sqlcreate.py 56 2 96% >django_extensions/management/commands/sqldiff.py 764 404 47% >django_extensions/management/commands/sqldsn.py 95 3 97% >django_extensions/management/commands/sync_s3.py 191 79 59% >django_extensions/management/commands/syncdata.py 142 8 94% >django_extensions/management/commands/unreferenced_files.py 33 0 100% >django_extensions/management/commands/update_permissions.py 41 0 100% >django_extensions/management/commands/validate_templates.py 65 0 100% >django_extensions/management/debug_cursor.py 79 24 70% >django_extensions/management/email_notifications.py 47 2 96% >django_extensions/management/jobs.py 127 14 89% >django_extensions/management/modelviz.py 273 23 92% >django_extensions/management/mysql.py 20 0 100% >django_extensions/management/notebook_extension.py 5 4 20% >django_extensions/management/shells.py 221 68 69% >django_extensions/management/signals.py 10 0 100% >django_extensions/management/technical_response.py 20 15 25% >django_extensions/management/utils.py 46 15 67% >django_extensions/models.py 0 0 100% >django_extensions/mongodb/__init__.py 0 0 100% >django_extensions/mongodb/fields/__init__.py 152 152 0% >django_extensions/mongodb/fields/json.py 41 41 0% >django_extensions/mongodb/models.py 34 34 0% >django_extensions/settings.py 11 0 100% >django_extensions/templatetags/__init__.py 0 0 100% >django_extensions/templatetags/debugger_tags.py 9 0 100% >django_extensions/templatetags/highlighting.py 39 0 100% >django_extensions/templatetags/indent_text.py 35 0 100% >django_extensions/templatetags/syntax_color.py 54 0 100% >django_extensions/templatetags/widont.py 23 4 83% >django_extensions/utils/__init__.py 1 0 100% >django_extensions/utils/deprecation.py 4 0 100% >django_extensions/utils/dia2django.py 142 129 9% >django_extensions/utils/internal_ips.py 25 14 44% >django_extensions/validators.py 73 2 97% >----------------------------------------------------------------------------------------- >TOTAL 7540 2203 71% >Coverage HTML written to dir htmlcov >=========================== short test summary info ============================ >FAILED tests/test_management_command.py::CommandClassTests::test_load_commands >FAILED tests/management/commands/shell_plus_tests/test_collision_resolver.py::CRTestCase::test_installed_apps_no_resolve_conflicts_function >FAILED tests/management/commands/shell_plus_tests/test_import_subclasses.py::ImportSubclassesTestCase::test_imports_one_base_class >FAILED tests/management/commands/shell_plus_tests/test_import_subclasses.py::ImportSubclassesTestCase::test_imports_one_base_class_as_string >FAILED tests/management/commands/shell_plus_tests/test_import_subclasses.py::ImportSubclassesTestCase::test_imports_one_base_mixin >FAILED tests/management/commands/shell_plus_tests/test_import_subclasses.py::ImportSubclassesTestCase::test_imports_two_base_classes >FAILED tests/management/commands/shell_plus_tests/test_import_subclasses.py::ImportSubclassesTestCase::test_imports_two_base_classes_exclude_classes_in_classes_to_include >FAILED tests/management/commands/shell_plus_tests/test_import_subclasses.py::ImportSubclassesTestCase::test_imports_two_base_classes_exclude_classes_in_project_dir >FAILED tests/management/commands/shell_plus_tests/test_import_subclasses.py::ImportSubclassesTestCase::test_imports_two_base_classes_exclude_derived_class_for_testing >FAILED tests/management/commands/shell_plus_tests/test_import_subclasses.py::ImportSubclassesTestCase::test_imports_two_base_classes_exclude_test_module >FAILED tests/management/commands/shell_plus_tests/test_import_subclasses.py::ImportSubclassesTestCase::test_imports_two_base_classes_exclude_testapp >FAILED tests/templatetags/test_highlighting.py::HighlightTagTests::test_should_highlight_bash_syntax_without_name >FAILED tests/management/commands/test_mail_debug.py::test_initialize_mail_server >= 13 failed, 496 passed, 5 skipped, 7 deselected, 4 xfailed, 6 xpassed, 96 warnings in 56.37s = >error: Bad exit status from /var/tmp/rpm-tmp.NhXDN4 (%check) >RPM build errors: > Bad exit status from /var/tmp/rpm-tmp.NhXDN4 (%check) >Child return code was: 1 >EXCEPTION: [Error('Command failed: \n # /usr/bin/systemd-nspawn -q -M a177d1715bd4498da508e358e05bbfb6 -D /var/lib/mock/f39-build-44334645-5276336/root -a -u mockbuild --capability=cap_ipc_lock --bind=/tmp/mock-resolv.5wdcp2u3:/etc/resolv.conf --bind=/dev/btrfs-control --bind=/dev/mapper/control --bind=/dev/loop-control --bind=/dev/loop0 --bind=/dev/loop1 --bind=/dev/loop2 --bind=/dev/loop3 --bind=/dev/loop4 --bind=/dev/loop5 --bind=/dev/loop6 --bind=/dev/loop7 --bind=/dev/loop8 --bind=/dev/loop9 --bind=/dev/loop10 --bind=/dev/loop11 --console=pipe --setenv=TERM=vt100 --setenv=SHELL=/bin/bash --setenv=HOME=/builddir --setenv=HOSTNAME=mock --setenv=PATH=/usr/bin:/bin:/usr/sbin:/sbin --setenv=PROMPT_COMMAND=printf "\\033]0;<mock-chroot>\\007" --setenv=PS1=<mock-chroot> \\s-\\v\\$ --setenv=LANG=C.UTF-8 --resolv-conf=off bash --login -c /usr/bin/rpmbuild -ba --noprep --noclean --target noarch --nodeps /builddir/build/SPECS/python-django-extensions.spec\n', 1)] >Traceback (most recent call last): > File "/usr/lib/python3.11/site-packages/mockbuild/trace_decorator.py", line 93, in trace > result = func(*args, **kw) > ^^^^^^^^^^^^^^^^^ > File "/usr/lib/python3.11/site-packages/mockbuild/util.py", line 597, in do_with_status > raise exception.Error("Command failed: \n # %s\n%s" % (command, output), child.returncode) >mockbuild.exception.Error: Command failed: > # /usr/bin/systemd-nspawn -q -M a177d1715bd4498da508e358e05bbfb6 -D /var/lib/mock/f39-build-44334645-5276336/root -a -u mockbuild --capability=cap_ipc_lock --bind=/tmp/mock-resolv.5wdcp2u3:/etc/resolv.conf --bind=/dev/btrfs-control --bind=/dev/mapper/control --bind=/dev/loop-control --bind=/dev/loop0 --bind=/dev/loop1 --bind=/dev/loop2 --bind=/dev/loop3 --bind=/dev/loop4 --bind=/dev/loop5 --bind=/dev/loop6 --bind=/dev/loop7 --bind=/dev/loop8 --bind=/dev/loop9 --bind=/dev/loop10 --bind=/dev/loop11 --console=pipe --setenv=TERM=vt100 --setenv=SHELL=/bin/bash --setenv=HOME=/builddir --setenv=HOSTNAME=mock --setenv=PATH=/usr/bin:/bin:/usr/sbin:/sbin --setenv=PROMPT_COMMAND=printf "\033]0;<mock-chroot>\007" --setenv=PS1=<mock-chroot> \s-\v\$ --setenv=LANG=C.UTF-8 --resolv-conf=off bash --login -c /usr/bin/rpmbuild -ba --noprep --noclean --target noarch --nodeps /builddir/build/SPECS/python-django-extensions.spec >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 2226178
: 1978930 |
1978931
|
1978932