Files
codeql/python/ql/test/library-tests/frameworks/django-orm
Owen Mansel-Chan 5a97348e78 python: Inline expectation should have space after $
This was a regex-find-replace from `# \$(?! )` (using a negative lookahead) to `# $ `.
2026-03-04 12:45:05 +00:00
..

The interesting ORM tests files can be found under testapp/orm_*.py. These are set up to be executed by the testapp/tests.py file.

List of interesting tests files (that might go out of date if it is forgotten 😳):

Setup

pip install django pytest pytest-django django-polymorphic

Run server

python manage.py makemigrations && python manage.py migrate && python manage.py runserver

Run tests

pytest