mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
12 lines
268 B
Python
12 lines
268 B
Python
import os
|
|
from pretix.testutils.settings import * # NOQA
|
|
|
|
|
|
TEST_DIR = os.path.dirname(__file__)
|
|
|
|
TEMPLATES[0]['DIRS'].append(os.path.join(TEST_DIR, 'templates')) # NOQA
|
|
|
|
INSTALLED_APPS.append('tests.testdummy') # NOQA
|
|
|
|
for a in PLUGINS:
|
|
INSTALLED_APPS.remove(a) |