forked from CGM_Public/pretix_original
10 lines
196 B
Python
10 lines
196 B
Python
from pretix.settings import *
|
|
|
|
TEST_DIR = os.path.dirname(__file__)
|
|
|
|
TEMPLATES[0]['DIRS'].append(os.path.join(TEST_DIR, 'templates'))
|
|
|
|
INSTALLED_APPS = INSTALLED_APPS + (
|
|
'tests.testdummy',
|
|
)
|