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 1979044 Details for
Bug 2226218
python-jedi: 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:23:35 UTC
(
hide
)
Description:
build.log
Filename:
MIME Type:
Creator:
Fedora Release Engineering
Created:
2023-07-25 19:23:35 UTC
Size:
32.00 KB
patch
obsolete
>ILD/jedi-0.18.2/test/examples/stub_packages/with_python'], 'string': 'something_random'} > def _send(self, inference_state_id, function, args=(), kwargs={}): > if self.is_crashed: > raise InternalError("The subprocess %s has crashed." % self._executable) > > data = inference_state_id, function, args, kwargs > try: > pickle_dump(data, self._get_process().stdin, PICKLE_PROTOCOL) > except BrokenPipeError: > self._kill() > raise InternalError("The subprocess %s was killed. Maybe out of memory?" > % self._executable) > > try: > is_exception, traceback, result = pickle_load(self._get_process().stdout) > except EOFError as eof_error: > try: > stderr = self._get_process().stderr.read().decode('utf-8', 'replace') > except Exception as exc: > stderr = '<empty/not available (%r)>' % exc > self._kill() > _add_stderr_to_debug(self._stderr_queue) > raise InternalError( > "The subprocess %s has crashed (%r, stderr=%s)." % ( > self._executable, > eof_error, > stderr, > )) > > _add_stderr_to_debug(self._stderr_queue) > > if is_exception: > # Replace the attribute error message with a the traceback. It's > # way more informative. > result.args = (traceback,) >> raise result >E AttributeError: Traceback (most recent call last): >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/__init__.py", line 343, in listen >E result = False, None, self._run(*payload) >E ^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/__init__.py", line 324, in _run >E return function(inference_state, *args, **kwargs) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/functions.py", line 41, in get_module_info >E return _find_module(full_name=full_name, **kwargs) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/functions.py", line 166, in _find_module >E return _find_module_py33(string, path, loader) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/functions.py", line 170, in _find_module_py33 >E loader = loader or importlib.machinery.PathFinder.find_module(string, path) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E AttributeError: type object 'PathFinder' has no attribute 'find_module' >jedi/inference/compiled/subprocess/__init__.py:270: AttributeError >_____________ test_docstrings[from with_python import stub_only-] ______________ >ScriptInStubFolder = functools.partial(<class 'jedi.api.Script'>, environment=<Environment: 3.12.0 in /usr>, project=<Project: /builddir/build/BUILD/jedi-0.18.2/test/examples/stub_packages>) >code = 'from with_python import stub_only', expected = '' > @pytest.mark.parametrize( > ('code', 'expected'), [ > ('from with_python import stub_only', ''), > ('from with_python import python_only', ''), > ('from with_python import both', ''), > > ('import with_python; with_python.func_without_stub', ''), > ('import with_python.module; with_python.module.func_without_stub', func_without_stub_doc), > ('from with_python import module; module.func_without_stub', func_without_stub_doc), > ('from with_python.module import func_without_stub', func_without_stub_doc), > ('from with_python.module import func_without_stub as f; f', func_without_stub_doc), > ('from with_python.module import func_without_stub; func_without_stub', > func_without_stub_doc), > ('from with_python import func_without_stub', ''), > ('from with_python import func_without_stub as f; f', ''), > ('from with_python import func_without_stub; func_without_stub', ''), > > ('import with_python; with_python.func_with_stub', func_with_stub_doc), > ('import with_python.module; with_python.module.func_with_stub', func_with_stub_doc), > ('from with_python import module; module.func_with_stub', func_with_stub_doc), > ('from with_python.module import func_with_stub', func_with_stub_doc), > ('from with_python.module import func_with_stub as f; f', func_with_stub_doc), > ('from with_python.module import func_with_stub; func_with_stub', func_with_stub_doc), > ('from with_python import func_with_stub', func_with_stub_doc), > ('from with_python import func_with_stub as f; f', func_with_stub_doc), > ('from with_python import func_with_stub; func_with_stub', func_with_stub_doc), > ] > ) > def test_docstrings(ScriptInStubFolder, code, expected): > d, = ScriptInStubFolder(code).help() >> assert d.docstring() == expected >test/test_inference/test_gradual/test_stub_loading.py:64: >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >jedi/api/classes.py:305: in docstring > signature_text = self._get_docstring_signature() >jedi/api/classes.py:317: in _get_docstring_signature > for signature in self._get_signatures(for_docstring=True) >jedi/api/classes.py:571: in _get_signatures > return [sig for name in names for sig in name.infer().get_signatures()] >jedi/inference/base_value.py:516: in get_signatures > return [sig for c in self._set for sig in c.get_signatures()] >jedi/inference/value/instance.py:120: in get_signatures > call_funcs = self.py__getattribute__('__call__').py__get__(self, self.class_value) >jedi/inference/base_value.py:83: in py__getattribute__ > names = self.goto(name_or_str, name_context, analysis_errors) >jedi/inference/base_value.py:72: in goto > names = finder.filter_name(filters, name_or_str) >jedi/inference/finder.py:35: in filter_name > for filter in filters: >jedi/inference/base_value.py:62: in _get_value_filters > yield from self.get_filters(origin_scope=origin_scope) >jedi/inference/value/instance.py:205: in get_filters > class_value = self.get_annotated_class_object() >jedi/inference/value/instance.py:348: in get_annotated_class_object > return self._get_annotated_class_object() or self.class_value >jedi/inference/cache.py:44: in wrapper > rv = function(obj, *args, **kwargs) >jedi/inference/value/instance.py:327: in _get_annotated_class_object > for signature in self.class_value.py__getattribute__('__init__').get_signatures(): >jedi/inference/base_value.py:83: in py__getattribute__ > names = self.goto(name_or_str, name_context, analysis_errors) >jedi/inference/base_value.py:72: in goto > names = finder.filter_name(filters, name_or_str) >jedi/inference/finder.py:35: in filter_name > for filter in filters: >jedi/inference/base_value.py:62: in _get_value_filters > yield from self.get_filters(origin_scope=origin_scope) >jedi/inference/value/klass.py:193: in get_filters > metaclasses = self.get_metaclasses() >jedi/inference/cache.py:44: in wrapper > rv = function(obj, *args, **kwargs) >jedi/inference/value/klass.py:381: in get_metaclasses > for value in lazy_base.infer(): >jedi/inference/lazy_value.py:48: in infer > return self.context.infer_node(self.data) >jedi/inference/context.py:224: in infer_node > return infer_node(self, node) >jedi/inference/syntax_tree.py:157: in infer_node > return _infer_node_if_inferred(context, element) >jedi/inference/syntax_tree.py:170: in _infer_node_if_inferred > return _infer_node_cached(context, element) >jedi/inference/cache.py:44: in wrapper > rv = function(obj, *args, **kwargs) >jedi/inference/syntax_tree.py:175: in _infer_node_cached > return _infer_node(context, element) >jedi/debug.py:81: in wrapper > return func(*args, **kwargs) >jedi/inference/syntax_tree.py:83: in wrapper > return func(context, *args, **kwargs) >jedi/inference/syntax_tree.py:198: in _infer_node > value_set = context.infer_node(first_child) >jedi/inference/context.py:224: in infer_node > return infer_node(self, node) >jedi/inference/syntax_tree.py:157: in infer_node > return _infer_node_if_inferred(context, element) >jedi/inference/syntax_tree.py:170: in _infer_node_if_inferred > return _infer_node_cached(context, element) >jedi/inference/cache.py:44: in wrapper > rv = function(obj, *args, **kwargs) >jedi/inference/syntax_tree.py:175: in _infer_node_cached > return _infer_node(context, element) >jedi/debug.py:81: in wrapper > return func(*args, **kwargs) >jedi/inference/syntax_tree.py:83: in wrapper > return func(context, *args, **kwargs) >jedi/inference/syntax_tree.py:185: in _infer_node > return infer_atom(context, element) >jedi/inference/syntax_tree.py:305: in infer_atom > return context.py__getattribute__(atom, position=position) >jedi/inference/context.py:77: in py__getattribute__ > values = ValueSet.from_sets(name.infer() for name in names) >jedi/inference/base_value.py:430: in from_sets > for set_ in sets: >jedi/inference/context.py:77: in <genexpr> > values = ValueSet.from_sets(name.infer() for name in names) >jedi/inference/names.py:281: in infer > return tree_name_to_values( >jedi/plugins/__init__.py:21: in wrapper > return built_functions[public_name](*args, **kwargs) >jedi/plugins/stdlib.py:878: in wrapper > return func(inference_state, context, tree_name) >jedi/plugins/django.py:177: in wrapper > result = func(inference_state, context, tree_name) >jedi/inference/syntax_tree.py:762: in tree_name_to_values > types = imports.infer_import(context, tree_name) >jedi/inference/cache.py:44: in wrapper > rv = function(obj, *args, **kwargs) >jedi/inference/imports.py:53: in infer_import > _prepare_infer_import(module_context, tree_name) >jedi/inference/imports.py:116: in _prepare_infer_import > return from_import_name, tuple(import_path), import_node.level, importer.follow() >jedi/inference/imports.py:296: in follow > return import_module_by_names( >jedi/inference/imports.py:377: in import_module_by_names > import_module( >jedi/plugins/__init__.py:21: in wrapper > return built_functions[public_name](*args, **kwargs) >jedi/plugins/flask.py:20: in wrapper > return callback(inference_state, import_names, module_context, *args, **kwargs) >jedi/inference/gradual/typeshed.py:115: in wrapper > python_value_set = ValueSet.from_sets( >jedi/inference/base_value.py:430: in from_sets > for set_ in sets: >jedi/inference/gradual/typeshed.py:116: in <genexpr> > func(inference_state, import_names, p, sys_path,) >jedi/inference/imports.py:411: in import_module > file_io_or_ns, is_pkg = inference_state.compiled_subprocess.get_module_info( >jedi/inference/compiled/subprocess/__init__.py:130: in wrapper > result = self._compiled_subprocess.run( >jedi/inference/compiled/subprocess/__init__.py:227: in run > return self._send(id(inference_state), function, args, kwargs) >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >self = <CompiledSubprocess _executable='/usr/bin/python3.12', is_crashed=False, pid=7001> >inference_state_id = 4061049000 >function = <function get_module_info at 0xf64fbac8>, args = () >kwargs = {'full_name': 'typing', 'is_global_search': True, 'string': 'typing', 'sys_path': ['/builddir/build/BUILD/jedi-0.18.2/test/examples/stub_packages']} > def _send(self, inference_state_id, function, args=(), kwargs={}): > if self.is_crashed: > raise InternalError("The subprocess %s has crashed." % self._executable) > > data = inference_state_id, function, args, kwargs > try: > pickle_dump(data, self._get_process().stdin, PICKLE_PROTOCOL) > except BrokenPipeError: > self._kill() > raise InternalError("The subprocess %s was killed. Maybe out of memory?" > % self._executable) > > try: > is_exception, traceback, result = pickle_load(self._get_process().stdout) > except EOFError as eof_error: > try: > stderr = self._get_process().stderr.read().decode('utf-8', 'replace') > except Exception as exc: > stderr = '<empty/not available (%r)>' % exc > self._kill() > _add_stderr_to_debug(self._stderr_queue) > raise InternalError( > "The subprocess %s has crashed (%r, stderr=%s)." % ( > self._executable, > eof_error, > stderr, > )) > > _add_stderr_to_debug(self._stderr_queue) > > if is_exception: > # Replace the attribute error message with a the traceback. It's > # way more informative. > result.args = (traceback,) >> raise result >E AttributeError: Traceback (most recent call last): >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/__init__.py", line 343, in listen >E result = False, None, self._run(*payload) >E ^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/__init__.py", line 324, in _run >E return function(inference_state, *args, **kwargs) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/functions.py", line 41, in get_module_info >E return _find_module(full_name=full_name, **kwargs) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/functions.py", line 166, in _find_module >E return _find_module_py33(string, path, loader) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/functions.py", line 170, in _find_module_py33 >E loader = loader or importlib.machinery.PathFinder.find_module(string, path) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E AttributeError: type object 'PathFinder' has no attribute 'find_module' >jedi/inference/compiled/subprocess/__init__.py:270: AttributeError >_______________________ test_module_exists_only_as_stub ________________________ >Script = functools.partial(<class 'jedi.api.Script'>, environment=<Environment: 3.12.0 in /usr>) > def test_module_exists_only_as_stub(Script): > try: > import redis > except ImportError: > pass > else: > pytest.skip('redis is already installed, it should only exist as a stub for this test') > redis_path = os.path.join(typeshed.TYPESHED_PATH, 'third_party', '2and3', 'redis') > assert os.path.isdir(redis_path) >> assert not Script('import redis').infer() >test/test_inference/test_gradual/test_typeshed.py:232: >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >jedi/api/helpers.py:487: in wrapper > return func(self, line, column, *args, **kwargs) >jedi/api/__init__.py:247: in infer > values = helpers.infer(self._inference_state, context, leaf) >jedi/api/helpers.py:167: in infer > return inference_state.infer(context, leaf) >jedi/inference/__init__.py:168: in infer > return imports.infer_import(context, name) >jedi/inference/cache.py:44: in wrapper > rv = function(obj, *args, **kwargs) >jedi/inference/imports.py:53: in infer_import > _prepare_infer_import(module_context, tree_name) >jedi/inference/imports.py:116: in _prepare_infer_import > return from_import_name, tuple(import_path), import_node.level, importer.follow() >jedi/inference/imports.py:296: in follow > return import_module_by_names( >jedi/inference/imports.py:377: in import_module_by_names > import_module( >jedi/plugins/__init__.py:21: in wrapper > return built_functions[public_name](*args, **kwargs) >jedi/plugins/flask.py:20: in wrapper > return callback(inference_state, import_names, module_context, *args, **kwargs) >jedi/inference/gradual/typeshed.py:115: in wrapper > python_value_set = ValueSet.from_sets( >jedi/inference/base_value.py:430: in from_sets > for set_ in sets: >jedi/inference/gradual/typeshed.py:116: in <genexpr> > func(inference_state, import_names, p, sys_path,) >jedi/inference/imports.py:411: in import_module > file_io_or_ns, is_pkg = inference_state.compiled_subprocess.get_module_info( >jedi/inference/compiled/subprocess/__init__.py:130: in wrapper > result = self._compiled_subprocess.run( >jedi/inference/compiled/subprocess/__init__.py:227: in run > return self._send(id(inference_state), function, args, kwargs) >_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ >self = <CompiledSubprocess _executable='/usr/bin/python3.12', is_crashed=False, pid=7001> >inference_state_id = 4041677176 >function = <function get_module_info at 0xf64fbac8>, args = () >kwargs = {'full_name': 'redis', 'is_global_search': True, 'string': 'redis', 'sys_path': ['/builddir/build/BUILD/jedi-0.18.2', ...usr/lib/python312.zip', '/usr/lib/python3.12', '/usr/lib/python3.12/lib-dynload', '/usr/lib/python3.12/site-packages']} > def _send(self, inference_state_id, function, args=(), kwargs={}): > if self.is_crashed: > raise InternalError("The subprocess %s has crashed." % self._executable) > > data = inference_state_id, function, args, kwargs > try: > pickle_dump(data, self._get_process().stdin, PICKLE_PROTOCOL) > except BrokenPipeError: > self._kill() > raise InternalError("The subprocess %s was killed. Maybe out of memory?" > % self._executable) > > try: > is_exception, traceback, result = pickle_load(self._get_process().stdout) > except EOFError as eof_error: > try: > stderr = self._get_process().stderr.read().decode('utf-8', 'replace') > except Exception as exc: > stderr = '<empty/not available (%r)>' % exc > self._kill() > _add_stderr_to_debug(self._stderr_queue) > raise InternalError( > "The subprocess %s has crashed (%r, stderr=%s)." % ( > self._executable, > eof_error, > stderr, > )) > > _add_stderr_to_debug(self._stderr_queue) > > if is_exception: > # Replace the attribute error message with a the traceback. It's > # way more informative. > result.args = (traceback,) >> raise result >E AttributeError: Traceback (most recent call last): >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/__init__.py", line 343, in listen >E result = False, None, self._run(*payload) >E ^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/__init__.py", line 324, in _run >E return function(inference_state, *args, **kwargs) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/functions.py", line 41, in get_module_info >E return _find_module(full_name=full_name, **kwargs) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/functions.py", line 166, in _find_module >E return _find_module_py33(string, path, loader) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E File "/builddir/build/BUILDROOT/python-jedi-0.18.2-6.fc39.noarch/usr/lib/python3.12/site-packages/jedi/inference/compiled/subprocess/functions.py", line 170, in _find_module_py33 >E loader = loader or importlib.machinery.PathFinder.find_module(string, path) >E ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ >E AttributeError: type object 'PathFinder' has no attribute 'find_module' >jedi/inference/compiled/subprocess/__init__.py:270: AttributeError >=============================== warnings summary =============================== >test/test_api/test_classes.py::test_param_docstring > /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) >-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html >=========================== short test summary info ============================ >FAILED jedi/api/__init__.py::jedi.api.Interpreter >FAILED jedi/api/classes.py::jedi.api.classes.BaseName.full_name >FAILED jedi/api/classes.py::jedi.api.classes.BaseName.type >FAILED test/test_utils.py::TestSetupReadline::test_modules - AttributeError: ... >FAILED test/test_api/test_api.py::test_docstrings_for_completions - Attribute... >FAILED test/test_api/test_api_classes_follow_definition.py::test_follow_import_incomplete >FAILED test/test_api/test_classes.py::test_type - AttributeError: Traceback (... >FAILED test/test_api/test_completion.py::test_os_nowait - AttributeError: Tra... >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/example.py-from os.path import *\ndirname(__file__) + "/test-None-expected31] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\ndirname(__file__) + "/test_ca-None-expected32] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\ndirname(abspath(__file__)) + sep + "test_ca-None-expected33] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin(dirname(__file__), "completion") + sep + "basi-None-expected34] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin("test", "completion") + sep + "basi-None-expected35] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin(dirname(__file__), "completion", "basi-None-expected36] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin(dirname(__file__), "completion", "basi)-43-expected37] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin(dirname(__file__), "completion", "basi")-43-expected38] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin(dirname(__file__), "completion", "basi)-35-expected39] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin(dirname(__file__), "completion", "basi)-33-expected40] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin(dirname(__file__), "completion", "basi")-33-expected41] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin("tes-9-expected42] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin('tes)-9-expected43] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin(r"tes"-10-expected44] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin("""tes""")-11-expected45] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin["tes-9-expected46] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin["tes"-9-expected47] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin["tes"]-9-expected48] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-import os\nos.path.join(os.path.dirname(__file__), "completi-49-expected52] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-import os\nos.path.join(os.path.dirname(__file__), "completi"-49-expected53] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-import os\nos.path.join(os.path.dirname(__file__), "completi")-49-expected54] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-import os.path as p as p\np.join(p.dirname(__file__), "completi-None-expected55] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import dirname, join as j\nj(dirname(__file__), "completi-None-expected56] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin(["tes-10-expected57] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin(["tes"]-10-expected58] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin(["tes"])-10-expected59] >FAILED test/test_api/test_completion.py::test_file_path_completions[/builddir/build/BUILD/jedi-0.18.2/test/example.py-from os.path import *\njoin("test", "test_cac" + x,-22-expected60] >FAILED test/test_api/test_completion.py::test_module_completions[os] - Attrib... >FAILED test/test_api/test_environment.py::test_working_venv - AssertionError:... >FAILED test/test_api/test_environment.py::test_scanning_venvs - assert False >FAILED test/test_api/test_environment.py::test_create_environment_venv_path >FAILED test/test_api/test_full_name.py::TestFullNameWithGotoDefinitions::test_from_import >FAILED test/test_api/test_full_name.py::TestFullNameWithGotoDefinitions::test_os_path_join >FAILED test/test_api/test_full_name.py::TestFullNameWithCompletions::test_os_path_join >FAILED test/test_api/test_full_name.py::test_os_path - AttributeError: Traceb... >FAILED test/test_api/test_full_name.py::test_os_issues - AttributeError: Trac... >FAILED test/test_api/test_interpreter.py::test_complete_raw_function - Attrib... >FAILED test/test_api/test_interpreter.py::test_complete_raw_function_different_name >FAILED test/test_api/test_interpreter.py::test_complete_raw_module - Attribut... >FAILED test/test_api/test_usages.py::test_references_scope[-places1] - Attrib... >FAILED test/test_api/test_usages.py::test_references_scope[-places2] - Attrib... >FAILED test/test_api/test_usages.py::test_references_scope[from datetime-places7] >FAILED test/test_api/test_usages.py::test_references_scope[from datetime import datetime\nd1 = datetime.now()\nd2 = datetime.now()\n-places8] >FAILED test/test_api/test_usages.py::test_references_scope[from datetime import timedelta\nt1 = timedelta(seconds=1)\nt2 = timedelta(seconds=2)\n-places9] >FAILED test/test_inference/test_compiled.py::test_dict_values - AttributeErro... >FAILED test/test_inference/test_implicit_namespace_package.py::test_implicit_namespace_package >FAILED test/test_inference/test_namespace_package.py::test_goto_definition - ... >FAILED test/test_inference/test_signature.py::test_compiled_signature[next-next(iterator, default=None, /)-names1-ge-version1] >FAILED test/test_inference/test_gradual/test_conversion.py::test_conversion_of_stub_only >FAILED test/test_inference/test_gradual/test_conversion.py::test_goto_on_file >FAILED test/test_inference/test_gradual/test_conversion.py::test_os_stat_result >FAILED test/test_inference/test_gradual/test_stub_loading.py::test_find_stubs_infer[from no_python import foo-expected0] >FAILED test/test_inference/test_gradual/test_stub_loading.py::test_find_stubs_infer[from with_python import something_random-expected4] >FAILED test/test_inference/test_gradual/test_stub_loading.py::test_docstrings[from with_python import stub_only-] >FAILED test/test_inference/test_gradual/test_typeshed.py::test_module_exists_only_as_stub >= 63 failed, 1170 passed, 22 skipped, 304 deselected, 1 xfailed, 1 warning in 64.68s (0:01:04) = >error: Bad exit status from /var/tmp/rpm-tmp.8mf1s7 (%check) > Bad exit status from /var/tmp/rpm-tmp.8mf1s7 (%check) >RPM build errors: >Child return code was: 1 >EXCEPTION: [Error('Command failed: \n # /usr/bin/systemd-nspawn -q -M 6c9cf8f291774cb98e40d6775a7694c8 -D /var/lib/mock/f39-build-44337212-5276436/root -a -u mockbuild --capability=cap_ipc_lock --bind=/tmp/mock-resolv.q0zloj3n:/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-jedi.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 6c9cf8f291774cb98e40d6775a7694c8 -D /var/lib/mock/f39-build-44337212-5276436/root -a -u mockbuild --capability=cap_ipc_lock --bind=/tmp/mock-resolv.q0zloj3n:/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-jedi.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 2226218
: 1979044 |
1979045
|
1979046