mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 04:39:54 -05:00
7 lines
259 B
Python
7 lines
259 B
Python
from django.test import utils
|
|
from django_scopes import scopes_disabled
|
|
|
|
# disables scoping error in all queries used inside the test functions
|
|
# fixtures need to have their own scopes_disabled
|
|
utils.setup_databases = scopes_disabled()(utils.setup_databases)
|