You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 29, 2026. It is now read-only.
If I have sqlcommenter configured for a Django project, including when running tests with the default Django test runner, the assertNumQueries assertion fails with the following exception:
Traceback (most recent call last):
File "test_something.py", line 4165, in test_some_feature
with self.assertNumQueries(5):
~~~~~~~~~~~~~~~~~~~~~^^^
File ".venv/lib/python3.13/site-packages/django/test/testcases.py", line 135, in __exit__
"\n".join(
~~~~~~~~~^
"%d. %s" % (i, query["sql"])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
for i, query in enumerate(self.captured_queries, start=1)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
),
^
File ".venv/lib/python3.13/site-packages/django/test/testcases.py", line 136, in <genexpr>
"%d. %s" % (i, query["sql"])
~~~~~^^^^^^^
TypeError: string indices must be integers, not 'str'
Django version 5.1.4, Python 3.13.1, sqlcommenter 2.0.0.
If I have
sqlcommenterconfigured for a Django project, including when running tests with the default Django test runner, theassertNumQueriesassertion fails with the following exception:Django version 5.1.4, Python 3.13.1,
sqlcommenter2.0.0.