TandoorRecipes/cookbook/helper/CustomTestRunner.py
2021-02-25 22:19:51 +01:00

9 lines
258 B
Python

from django.test.runner import DiscoverRunner
from django_scopes import scopes_disabled
class CustomTestRunner(DiscoverRunner):
def run_tests(self, *args, **kwargs):
with scopes_disabled():
return super().run_tests(*args, **kwargs)