Closed
Description
The default implementation of SimpleTestCase
disables database queries per default, which is why I'm thinking that migrating the database could conditionally happen depending on the value of SimpleTestCase.databases
?
SimpleTestCase disallows database queries by default. This helps to avoid executing write queries which will affect other tests since each SimpleTestCase test isn’t run in a transaction. If you aren’t concerned about this problem, you can disable this behavior by setting the databases class attribute to 'all' on your test class.
Ref: https://docs.djangoproject.com/en/4.1/topics/testing/tools/#django.test.SimpleTestCase.databases
Metadata
Assignees
Labels
No labels