I'm running the tests with --parallel and want to add some object to every database that is created (for each process).
currently, I have a CustomTestRunner which inherit from DiscoverRunner.
In that class, I'm overriding setup_databases method.
after calling super().setup_databases(), I'm making a change in the db (like Users.objects.create(....))
The changes occur only in one of the databases, But I want that change to be in all of them.
How can I achieve that? My Custom Test Runner