9 lines
159 B
Python
9 lines
159 B
Python
from django.conf import settings
|
|
|
|
|
|
def pytest_configure():
|
|
"""
|
|
Use Django's default settings for tests in common/lib.
|
|
"""
|
|
settings.configure()
|