Is this possible: Django TestCase + async + db calls?

I have an error when use db calls in async methods of Django TestCase: “psycopg2.InterfaceError: connection already closed”

I know that I can use TransactionTestCase, but it’s slow. Is there solution for this using Django TestCase?

I answered myself here: database - Is this possible: Django TestCase + async + db calls? - Stack Overflow