The documentation indicates we can use django_db_blocker to unblock database access and enable tests to utilize a real database. Alternatively we can implement django_db_setup to use a real database.
Is it possible to add a fixture analogous to db or transactional_db to indicate "use a real external database"? Something like external_db?
The documentation indicates we can use django_db_blocker to unblock database access and enable tests to utilize a real database. Alternatively we can implement django_db_setup to use a real database.
Is it possible to add a fixture analogous to
db
ortransactional_db
to indicate "use a real external database"? Something likeexternal_db
?