/usr/lib/python3.12/site-packages/sphinx/themes/basic/layout.html:299: in root ??? /usr/lib/python3.12/site-packages/sphinx/themes/basic/layout.html:543: in block_css ??? /usr/lib/python3.12/site-packages/jinja2/sandbox.py:393: in call return __context.call(__obj, *args, **kwargs) /usr/lib/python3.12/site-packages/jinja2/runtime.py:298: in call return __obj(*args, **kwargs) /usr/lib/python3.12/site-packages/jinja2/runtime.py:763: in __call__ return self._invoke(arguments, autoescape) /usr/lib/python3.12/site-packages/jinja2/runtime.py:777: in _invoke rv = self._func(*arguments) /usr/lib/python3.12/site-packages/sphinx/themes/basic/layout.html:266: in macro ??? /usr/lib/python3.12/site-packages/jinja2/sandbox.py:391: in call if not __self.is_safe_callable(__obj): /usr/lib/python3.12/site-packages/jinja2/sandbox.py:275: in is_safe_callable getattr(obj, "unsafe_callable", False) or getattr(obj, "alters_data", False) /usr/lib/python3.12/site-packages/jinja2/runtime.py:859: in __getattr__ return self._fail_with_undefined_error() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = Undefined, args = (), kwargs = {} @internalcode def _fail_with_undefined_error( self, *args: t.Any, **kwargs: t.Any ) -> "te.NoReturn": """Raise an :exc:`UndefinedError` when operations are performed on the undefined value. """ > raise self._undefined_exception(self._undefined_message) E jinja2.exceptions.UndefinedError: 'css_tag' is undefined /usr/lib/python3.12/site-packages/jinja2/runtime.py:852: UndefinedError _________________________________ test_whoosh __________________________________ self = dialect = constructor = > statement = 'INSERT INTO sphinx_nodes (id, document, source) VALUES (?, ?, ?)' parameters = ('734e4491f3814ea4857b3751b752b75d', 'markup', 'Testing various markup') execution_options = immutabledict({'autocommit': True, 'compiled_cache': {(, 137]}}) args = (, [{'document': 'markup', 'id': '734e4491f...ea4857b3751b752b75d', 'source': 'Testing various markup'}], , []) kw = {'cache_hit': symbol('CACHE_MISS')} branched = yp = None conn = context = cursor = , evt_handled = False def _execute_context( self, dialect, constructor, statement, parameters, execution_options, *args, **kw ): """Create an :class:`.ExecutionContext` and execute, returning a :class:`_engine.CursorResult`.""" branched = self if self.__branch_from: # if this is a "branched" connection, do everything in terms # of the "root" connection, *except* for .close(), which is # the only feature that branching provides self = self.__branch_from if execution_options: yp = execution_options.get("yield_per", None) if yp: execution_options = execution_options.union( {"stream_results": True, "max_row_buffer": yp} ) try: conn = self._dbapi_connection if conn is None: conn = self._revalidate_connection() context = constructor( dialect, self, conn, execution_options, *args, **kw ) except (exc.PendingRollbackError, exc.ResourceClosedError): raise except BaseException as e: self._handle_dbapi_exception( e, util.text_type(statement), parameters, None, None ) if ( self._transaction and not self._transaction.is_active or ( self._nested_transaction and not self._nested_transaction.is_active ) ): self._invalid_transaction() elif self._trans_context_manager: TransactionalContext._trans_ctx_check(self) if self._is_future and self._transaction is None: self._autobegin() context.pre_exec() if dialect.use_setinputsizes: context._set_input_sizes() cursor, statement, parameters = ( context.cursor, context.statement, context.parameters, ) if not context.executemany: parameters = parameters[0] if self._has_events or self.engine._has_events: for fn in self.dispatch.before_cursor_execute: statement, parameters = fn( self, cursor, statement, parameters, context, context.executemany, ) if self._echo: self._log_info(statement) stats = context._get_cache_stats() if not self.engine.hide_parameters: self._log_info( "[%s] %r", stats, sql_util._repr_params( parameters, batches=10, ismulti=context.executemany ), ) else: self._log_info( "[%s] [SQL parameters hidden due to hide_parameters=True]" % (stats,) ) evt_handled = False try: if context.executemany: if self.dialect._has_events: for fn in self.dialect.dispatch.do_executemany: if fn(cursor, statement, parameters, context): evt_handled = True break if not evt_handled: self.dialect.do_executemany( cursor, statement, parameters, context ) elif not parameters and context.no_parameters: if self.dialect._has_events: for fn in self.dialect.dispatch.do_execute_no_params: if fn(cursor, statement, context): evt_handled = True break if not evt_handled: self.dialect.do_execute_no_params( cursor, statement, context ) else: if self.dialect._has_events: for fn in self.dialect.dispatch.do_execute: if fn(cursor, statement, parameters, context): evt_handled = True break if not evt_handled: > self.dialect.do_execute( cursor, statement, parameters, context ) /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:1910: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = cursor = statement = 'INSERT INTO sphinx_nodes (id, document, source) VALUES (?, ?, ?)' parameters = ('734e4491f3814ea4857b3751b752b75d', 'markup', 'Testing various markup') context = def do_execute(self, cursor, statement, parameters, context=None): > cursor.execute(statement, parameters) E sqlite3.OperationalError: database is locked /usr/lib64/python3.12/site-packages/sqlalchemy/engine/default.py:736: OperationalError The above exception was the direct cause of the following exception: @skip_unless_importable('whoosh', 'needs whoosh package installed') @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') def test_whoosh(): > search_adapter_helper('whoosh') tests/test_searchadapters.py:70: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ tests/test_searchadapters.py:32: in search_adapter_helper support.build() ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/core.py:144: in build app.build() /usr/lib/python3.12/site-packages/sphinx/application.py:360: in build self.builder.build_update() /usr/lib/python3.12/site-packages/sphinx/builders/__init__.py:293: in build_update self.build(to_build, /usr/lib/python3.12/site-packages/sphinx/builders/__init__.py:363: in build self.write(docnames, list(updated_docnames), method) /usr/lib/python3.12/site-packages/sphinx/builders/__init__.py:571: in write self._write_serial(sorted(docnames)) /usr/lib/python3.12/site-packages/sphinx/builders/__init__.py:581: in _write_serial self.write_doc(docname, doctree) ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/builder.py:96: in write_doc self.docwriter.write(doctree, destination) /usr/lib/python3.12/site-packages/docutils/writers/__init__.py:80: in write self.translate() /usr/lib/python3.12/site-packages/sphinx/writers/html.py:36: in translate self.document.walkabout(visitor) /usr/lib/python3.12/site-packages/docutils/nodes.py:186: in walkabout if child.walkabout(visitor): /usr/lib/python3.12/site-packages/docutils/nodes.py:186: in walkabout if child.walkabout(visitor): /usr/lib/python3.12/site-packages/docutils/nodes.py:186: in walkabout if child.walkabout(visitor): /usr/lib/python3.12/site-packages/docutils/nodes.py:186: in walkabout if child.walkabout(visitor): /usr/lib/python3.12/site-packages/docutils/nodes.py:186: in walkabout if child.walkabout(visitor): /usr/lib/python3.12/site-packages/docutils/nodes.py:186: in walkabout if child.walkabout(visitor): /usr/lib/python3.12/site-packages/docutils/nodes.py:178: in walkabout visitor.dispatch_visit(self) ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/writer.py:28: in dispatch_visit self.handle_visit_commentable(node) ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/writer.py:35: in handle_visit_commentable self.add_db_node(node) ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/writer.py:45: in add_db_node storage.add_node(id=node.uid, ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/storage/sqlalchemystorage.py:51: in add_node self.build_session.flush() /usr/lib64/python3.12/site-packages/sqlalchemy/orm/session.py:3449: in flush self._flush(objects) /usr/lib64/python3.12/site-packages/sqlalchemy/orm/session.py:3588: in _flush with util.safe_reraise(): /usr/lib64/python3.12/site-packages/sqlalchemy/util/langhelpers.py:70: in __exit__ compat.raise_( /usr/lib64/python3.12/site-packages/sqlalchemy/util/compat.py:211: in raise_ raise exception /usr/lib64/python3.12/site-packages/sqlalchemy/orm/session.py:3549: in _flush flush_context.execute() /usr/lib64/python3.12/site-packages/sqlalchemy/orm/unitofwork.py:456: in execute rec.execute(self) /usr/lib64/python3.12/site-packages/sqlalchemy/orm/unitofwork.py:630: in execute util.preloaded.orm_persistence.save_obj( /usr/lib64/python3.12/site-packages/sqlalchemy/orm/persistence.py:245: in save_obj _emit_insert_statements( /usr/lib64/python3.12/site-packages/sqlalchemy/orm/persistence.py:1097: in _emit_insert_statements c = connection._execute_20( /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:1710: in _execute_20 return meth(self, args_10style, kwargs_10style, execution_options) /usr/lib64/python3.12/site-packages/sqlalchemy/sql/elements.py:334: in _execute_on_connection return connection._execute_clauseelement( /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:1577: in _execute_clauseelement ret = self._execute_context( /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:1953: in _execute_context self._handle_dbapi_exception( /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:2134: in _handle_dbapi_exception util.raise_( /usr/lib64/python3.12/site-packages/sqlalchemy/util/compat.py:211: in raise_ raise exception /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:1910: in _execute_context self.dialect.do_execute( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = cursor = statement = 'INSERT INTO sphinx_nodes (id, document, source) VALUES (?, ?, ?)' parameters = ('734e4491f3814ea4857b3751b752b75d', 'markup', 'Testing various markup') context = def do_execute(self, cursor, statement, parameters, context=None): > cursor.execute(statement, parameters) E sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) database is locked E [SQL: INSERT INTO sphinx_nodes (id, document, source) VALUES (?, ?, ?)] E [parameters: ('734e4491f3814ea4857b3751b752b75d', 'markup', 'Testing various markup')] E (Background on this error at: https://sqlalche.me/e/14/e3q8) /usr/lib64/python3.12/site-packages/sqlalchemy/engine/default.py:736: OperationalError __________________________________ test_build __________________________________ support = @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') @with_support() def test_build(support): > support.build() tests/test_websupport.py:63: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/core.py:144: in build app.build() /usr/lib/python3.12/site-packages/sphinx/application.py:360: in build self.builder.build_update() /usr/lib/python3.12/site-packages/sphinx/builders/__init__.py:293: in build_update self.build(to_build, /usr/lib/python3.12/site-packages/sphinx/builders/__init__.py:363: in build self.write(docnames, list(updated_docnames), method) /usr/lib/python3.12/site-packages/sphinx/builders/__init__.py:571: in write self._write_serial(sorted(docnames)) /usr/lib/python3.12/site-packages/sphinx/builders/__init__.py:581: in _write_serial self.write_doc(docname, doctree) ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/builder.py:102: in write_doc self.handle_page(docname, ctx, event_arg=doctree) ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/builder.py:166: in handle_page ctx, doc_ctx = self._render_page(pagename, addctx, ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/builder.py:156: in _render_page template_module = template.make_module(ctx) /usr/lib/python3.12/site-packages/jinja2/environment.py:1405: in make_module return TemplateModule(self, ctx) /usr/lib/python3.12/site-packages/jinja2/environment.py:1535: in __init__ body_stream = list(template.root_render_func(context)) /usr/lib/python3.12/site-packages/sphinx/themes/basic/page.html:15: in root ??? tests/root/_templates/layout.html:15: in root {% endblock %} tests/root/testtheme/layout.html:15: in root ??? /usr/lib/python3.12/site-packages/sphinx/themes/basic/layout.html:299: in root ??? /usr/lib/python3.12/site-packages/sphinx/themes/basic/layout.html:543: in block_css ??? /usr/lib/python3.12/site-packages/jinja2/sandbox.py:393: in call return __context.call(__obj, *args, **kwargs) /usr/lib/python3.12/site-packages/jinja2/runtime.py:298: in call return __obj(*args, **kwargs) /usr/lib/python3.12/site-packages/jinja2/runtime.py:763: in __call__ return self._invoke(arguments, autoescape) /usr/lib/python3.12/site-packages/jinja2/runtime.py:777: in _invoke rv = self._func(*arguments) /usr/lib/python3.12/site-packages/sphinx/themes/basic/layout.html:266: in macro ??? /usr/lib/python3.12/site-packages/jinja2/sandbox.py:391: in call if not __self.is_safe_callable(__obj): /usr/lib/python3.12/site-packages/jinja2/sandbox.py:275: in is_safe_callable getattr(obj, "unsafe_callable", False) or getattr(obj, "alters_data", False) /usr/lib/python3.12/site-packages/jinja2/runtime.py:859: in __getattr__ return self._fail_with_undefined_error() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = Undefined, args = (), kwargs = {} @internalcode def _fail_with_undefined_error( self, *args: t.Any, **kwargs: t.Any ) -> "te.NoReturn": """Raise an :exc:`UndefinedError` when operations are performed on the undefined value. """ > raise self._undefined_exception(self._undefined_message) E jinja2.exceptions.UndefinedError: 'css_tag' is undefined /usr/lib/python3.12/site-packages/jinja2/runtime.py:852: UndefinedError ----------------------------- Captured stdout call ----------------------------- Running Sphinx v7.2.6 building [mo]: targets for 0 po files that are out of date writing output...  building [websupport]: targets for 14 source files that are out of date updating environment: [new config] 14 added, 0 changed, 0 removed reading sources... [ 7%] bom reading sources... [ 14%] contents reading sources... [ 21%] extapi reading sources... [ 29%] extensions reading sources... [ 36%] footnote reading sources... [ 43%] images reading sources... [ 50%] includes reading sources... [ 57%] lists reading sources... [ 64%] markup reading sources... [ 71%] math reading sources... [ 79%] metadata reading sources... [ 86%] objects reading sources... [ 93%] subdir/images reading sources... [100%] subdir/includes looking for now-outdated files... none found pickling environment... done checking consistency... done preparing documents... done copying assets... copying downloadable files... [ 50%] ../img.png copying downloadable files... [100%] ../subdir/img.png copying static files... done copying extra files... done done writing output... [ 7%] bom ----------------------------- Captured stderr call ----------------------------- /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/contents.txt:10: WARNING: toctree contains reference to nonexisting document 'autodoc' /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/contents.txt:10: WARNING: duplicated entry found in toctree: extensions /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/extensions.txt:7: ERROR: Unknown interpreted text role "issue". /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/extensions.txt:7: ERROR: Unknown interpreted text role "pyurl". /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/extensions.txt:7: ERROR: Unknown interpreted text role "issue". /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/extensions.txt:14: ERROR: Unknown directive type "todo". .. todo:: Test the todo extension. /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/extensions.txt:18: ERROR: Unknown directive type "todo". .. todo:: Test with |sub| (see #286). /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/extensions.txt:28: ERROR: Unknown directive type "todolist". .. todolist:: /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/images.txt:9: WARNING: image file not readable: foo.png /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/includes.txt:4: WARNING: download file not readable: /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/nonexisting.png WARNING: 'keyword' is deprecated for index entries (from entry 'keyword: with'). Use 'pair: keyword; with' instead. /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/objects.txt:110: WARNING: Error in declarator If declarator-id with parameters (e.g., 'void f(int arg)'): Invalid C declaration: Expected identifier in nested name. [error at 18] Sphinx_DoSomething() ------------------^ If parenthesis in noptr-declarator (e.g., 'void (*f(int arg))(double)'): Error in declarator or parameters Invalid C declaration: Expected identifier in nested name. [error at 19] Sphinx_DoSomething() -------------------^  /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/objects.txt:112: WARNING: Error in declarator or parameters Invalid C declaration: Expected identifier in nested name. [error at 19] SphinxStruct.member -------------------^ /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/objects.txt:118: WARNING: Error in declarator or parameters Invalid C declaration: Expected identifier in nested name. [error at 13] sphinx_global -------------^ /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/root/contents.txt:10: WARNING: extensions is already assigned section numbers (nested numbered toctree?) ______________________________ test_get_document _______________________________ self = docname = 'contents', username = '', moderator = False def get_document(self, docname, username='', moderator=False): """Load and return a document from a pickle. The document will be a dict object which can be used to render a template:: support = WebSupport(datadir=datadir) support.get_document('index', username, moderator) In most cases `docname` will be taken from the request path and passed directly to this function. In Flask, that would be something like this:: @app.route('/') def index(docname): username = g.user.name if g.user else '' moderator = g.user.moderator if g.user else False try: document = support.get_document(docname, username, moderator) except DocumentNotFoundError: abort(404) render_template('doc.html', document=document) The document dict that is returned contains the following items to be used during template rendering. * **body**: The main body of the document as HTML * **sidebar**: The sidebar of the document as HTML * **relbar**: A div containing links to related documents * **title**: The title of the document * **css**: Links to css files used by Sphinx * **script**: Javascript containing comment options This raises :class:`~sphinxcontrib.websupport.errors.DocumentNotFoundError` if a document matching `docname` is not found. :param docname: the name of the document to load. """ docpath = path.join(self.datadir, 'pickles', docname) if path.isdir(docpath): infilename = docpath + '/index.fpickle' if not docname: docname = 'index' else: docname += '/index' else: infilename = docpath + '.fpickle' try: > with open(infilename, 'rb') as f: E FileNotFoundError: [Errno 2] No such file or directory: '/tmp/tmp7nzfdzua/websupport/data/pickles/contents.fpickle' ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/core.py:203: FileNotFoundError During handling of the above exception, another exception occurred: support = @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') @with_support() def test_get_document(support): with pytest.raises(DocumentNotFoundError): support.get_document('nonexisting') > contents = support.get_document('contents') tests/test_websupport.py:72: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = docname = 'contents', username = '', moderator = False def get_document(self, docname, username='', moderator=False): """Load and return a document from a pickle. The document will be a dict object which can be used to render a template:: support = WebSupport(datadir=datadir) support.get_document('index', username, moderator) In most cases `docname` will be taken from the request path and passed directly to this function. In Flask, that would be something like this:: @app.route('/') def index(docname): username = g.user.name if g.user else '' moderator = g.user.moderator if g.user else False try: document = support.get_document(docname, username, moderator) except DocumentNotFoundError: abort(404) render_template('doc.html', document=document) The document dict that is returned contains the following items to be used during template rendering. * **body**: The main body of the document as HTML * **sidebar**: The sidebar of the document as HTML * **relbar**: A div containing links to related documents * **title**: The title of the document * **css**: Links to css files used by Sphinx * **script**: Javascript containing comment options This raises :class:`~sphinxcontrib.websupport.errors.DocumentNotFoundError` if a document matching `docname` is not found. :param docname: the name of the document to load. """ docpath = path.join(self.datadir, 'pickles', docname) if path.isdir(docpath): infilename = docpath + '/index.fpickle' if not docname: docname = 'index' else: docname += '/index' else: infilename = docpath + '.fpickle' try: with open(infilename, 'rb') as f: document = pickle.load(f) except IOError: > raise errors.DocumentNotFoundError( 'The document "%s" could not be found' % docname) E sphinxcontrib.websupport.errors.DocumentNotFoundError: The document "contents" could not be found ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/core.py:206: DocumentNotFoundError ________________________________ test_comments _________________________________ support = @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') @with_support() def test_comments(support): session = Session() nodes = session.query(Node).all() > first_node = nodes[0] E IndexError: list index out of range tests/test_websupport.py:82: IndexError __________________________ test_user_delete_comments ___________________________ support = @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') @with_support() def test_user_delete_comments(support): def get_comment(): session = Session() node = session.query(Node).first() session.close() return support.get_data(node.id)['comments'][0] > comment = get_comment() tests/test_websupport.py:135: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ def get_comment(): session = Session() node = session.query(Node).first() session.close() > return support.get_data(node.id)['comments'][0] E AttributeError: 'NoneType' object has no attribute 'id' tests/test_websupport.py:133: AttributeError _______________________________ test_moderation ________________________________ support = @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') @with_support(moderation_callback=moderation_callback) def test_moderation(support): session = Session() nodes = session.query(Node).all() > node = nodes[7] E IndexError: list index out of range tests/test_websupport.py:160: IndexError ________________________ test_moderator_delete_comments ________________________ support = @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') @with_support() def test_moderator_delete_comments(support): def get_comment(): session = Session() node = session.query(Node).first() session.close() return support.get_data(node.id, moderator=True)['comments'][1] > comment = get_comment() tests/test_websupport.py:190: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ def get_comment(): session = Session() node = session.query(Node).first() session.close() > return support.get_data(node.id, moderator=True)['comments'][1] E AttributeError: 'NoneType' object has no attribute 'id' tests/test_websupport.py:188: AttributeError _____________________________ test_update_username _____________________________ self = dialect = constructor = > statement = 'UPDATE sphinx_comments SET username=? WHERE sphinx_comments.username = ?' parameters = ('new_user_two', 'user_two') execution_options = immutabledict({'autocommit': True, 'synchronize_session': 'evaluate', '_sa_orm_update_options': default_update_options..., _value_evaluators={'username': . at 0xffffff8445b880>})}) args = (, [{}], yp = None conn = context = cursor = , evt_handled = False def _execute_context( self, dialect, constructor, statement, parameters, execution_options, *args, **kw ): """Create an :class:`.ExecutionContext` and execute, returning a :class:`_engine.CursorResult`.""" branched = self if self.__branch_from: # if this is a "branched" connection, do everything in terms # of the "root" connection, *except* for .close(), which is # the only feature that branching provides self = self.__branch_from if execution_options: yp = execution_options.get("yield_per", None) if yp: execution_options = execution_options.union( {"stream_results": True, "max_row_buffer": yp} ) try: conn = self._dbapi_connection if conn is None: conn = self._revalidate_connection() context = constructor( dialect, self, conn, execution_options, *args, **kw ) except (exc.PendingRollbackError, exc.ResourceClosedError): raise except BaseException as e: self._handle_dbapi_exception( e, util.text_type(statement), parameters, None, None ) if ( self._transaction and not self._transaction.is_active or ( self._nested_transaction and not self._nested_transaction.is_active ) ): self._invalid_transaction() elif self._trans_context_manager: TransactionalContext._trans_ctx_check(self) if self._is_future and self._transaction is None: self._autobegin() context.pre_exec() if dialect.use_setinputsizes: context._set_input_sizes() cursor, statement, parameters = ( context.cursor, context.statement, context.parameters, ) if not context.executemany: parameters = parameters[0] if self._has_events or self.engine._has_events: for fn in self.dispatch.before_cursor_execute: statement, parameters = fn( self, cursor, statement, parameters, context, context.executemany, ) if self._echo: self._log_info(statement) stats = context._get_cache_stats() if not self.engine.hide_parameters: self._log_info( "[%s] %r", stats, sql_util._repr_params( parameters, batches=10, ismulti=context.executemany ), ) else: self._log_info( "[%s] [SQL parameters hidden due to hide_parameters=True]" % (stats,) ) evt_handled = False try: if context.executemany: if self.dialect._has_events: for fn in self.dialect.dispatch.do_executemany: if fn(cursor, statement, parameters, context): evt_handled = True break if not evt_handled: self.dialect.do_executemany( cursor, statement, parameters, context ) elif not parameters and context.no_parameters: if self.dialect._has_events: for fn in self.dialect.dispatch.do_execute_no_params: if fn(cursor, statement, context): evt_handled = True break if not evt_handled: self.dialect.do_execute_no_params( cursor, statement, context ) else: if self.dialect._has_events: for fn in self.dialect.dispatch.do_execute: if fn(cursor, statement, parameters, context): evt_handled = True break if not evt_handled: > self.dialect.do_execute( cursor, statement, parameters, context ) /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:1910: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = cursor = statement = 'UPDATE sphinx_comments SET username=? WHERE sphinx_comments.username = ?' parameters = ('new_user_two', 'user_two') context = def do_execute(self, cursor, statement, parameters, context=None): > cursor.execute(statement, parameters) E sqlite3.OperationalError: database is locked /usr/lib64/python3.12/site-packages/sqlalchemy/engine/default.py:736: OperationalError The above exception was the direct cause of the following exception: support = @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') @with_support() def test_update_username(support): > support.update_username('user_two', 'new_user_two') tests/test_websupport.py:200: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/core.py:385: in update_username self.storage.update_username(old_username, new_username) ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/storage/sqlalchemystorage.py:160: in update_username update({Comment.username: new_username}) /usr/lib64/python3.12/site-packages/sqlalchemy/orm/query.py:3306: in update result = self.session.execute( /usr/lib64/python3.12/site-packages/sqlalchemy/orm/session.py:1717: in execute result = conn._execute_20(statement, params or {}, execution_options) /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:1710: in _execute_20 return meth(self, args_10style, kwargs_10style, execution_options) /usr/lib64/python3.12/site-packages/sqlalchemy/sql/elements.py:334: in _execute_on_connection return connection._execute_clauseelement( /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:1577: in _execute_clauseelement ret = self._execute_context( /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:1953: in _execute_context self._handle_dbapi_exception( /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:2134: in _handle_dbapi_exception util.raise_( /usr/lib64/python3.12/site-packages/sqlalchemy/util/compat.py:211: in raise_ raise exception /usr/lib64/python3.12/site-packages/sqlalchemy/engine/base.py:1910: in _execute_context self.dialect.do_execute( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = cursor = statement = 'UPDATE sphinx_comments SET username=? WHERE sphinx_comments.username = ?' parameters = ('new_user_two', 'user_two') context = def do_execute(self, cursor, statement, parameters, context=None): > cursor.execute(statement, parameters) E sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) database is locked E [SQL: UPDATE sphinx_comments SET username=? WHERE sphinx_comments.username = ?] E [parameters: ('new_user_two', 'user_two')] E (Background on this error at: https://sqlalche.me/e/14/e3q8) /usr/lib64/python3.12/site-packages/sqlalchemy/engine/default.py:736: OperationalError ________________________________ test_proposals ________________________________ support = @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') @with_support() def test_proposals(support): session = Session() node = session.query(Node).first() > data = support.get_data(node.id) E AttributeError: 'NoneType' object has no attribute 'id' tests/test_websupport.py:222: AttributeError _________________________________ test_voting __________________________________ support = @pytest.mark.skipif(sqlalchemy_missing, reason='needs sqlalchemy') @with_support() def test_voting(support): session = Session() nodes = session.query(Node).all() > node = nodes[0] E IndexError: list index out of range tests/test_websupport.py:237: IndexError =============================== warnings summary =============================== ../../../../usr/lib/python3.12/site-packages/pkg_resources/__init__.py:2866 /usr/lib/python3.12/site-packages/pkg_resources/__init__.py:2866: 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) ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/__init__.py:14 /builddir/build/BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/__init__.py:14: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('sphinxcontrib.websupport')`. 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 __import__('pkg_resources').declare_namespace(__name__) ../../../../usr/lib/python3.12/site-packages/pkg_resources/__init__.py:2345 /usr/lib/python3.12/site-packages/pkg_resources/__init__.py:2345: 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(parent) ../../BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/storage/sqlalchemy_db.py:24 /builddir/build/BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/storage/sqlalchemy_db.py:24: MovedIn20Warning: Deprecated API features detected! These feature(s) are not compatible with SQLAlchemy 2.0. To prevent incompatible upgrades prior to updating applications, ensure requirements files are pinned to "sqlalchemy<2.0". Set environment variable SQLALCHEMY_WARN_20=1 to show all deprecation warnings. Set environment variable SQLALCHEMY_SILENCE_UBER_WARNING=1 to silence this message. (Background on SQLAlchemy 2.0 at: https://sqlalche.me/e/b8d9) Base = declarative_base() tests/util.py:15 /builddir/build/BUILD/sphinxcontrib-websupport-1.2.4/tests/util.py:15: RemovedInSphinx90Warning: 'sphinx.testing.path' is deprecated. Use 'os.path' or 'pathlib' instead. from sphinx.testing.path import path tests/test_searchadapters.py::test_xapian tests/test_searchadapters.py::test_whoosh tests/test_websupport.py::test_no_srcdir tests/test_websupport.py::test_build /builddir/build/BUILDROOT/python-sphinxcontrib-websupport-1.2.4-16.fc40.noarch/usr/lib/python3.12/site-packages/sphinxcontrib/websupport/builder.py:65: RemovedInSphinx90Warning: 'sphinx.builders.html.WebSupportBuilder.script_files' is deprecated. Check CHANGES for Sphinx API modifications. self.script_files.append('_static/websupport.js') -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html ============= 11 failed, 2 passed, 9 warnings in 310.47s (0:05:10) ============= error: Bad exit status from /var/tmp/rpm-tmp.pngdNO (%check) RPM build errors: Bad exit status from /var/tmp/rpm-tmp.pngdNO (%check) Child return code was: 1 EXCEPTION: [Error('Command failed: \n # bash --login -c /usr/bin/rpmbuild -bb --noclean --target noarch --nodeps /builddir/build/SPECS/python-sphinxcontrib-websupport.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: # bash --login -c /usr/bin/rpmbuild -bb --noclean --target noarch --nodeps /builddir/build/SPECS/python-sphinxcontrib-websupport.spec