Files
pretix_original/src/tests/settings.py
2016-11-06 20:01:11 +01:00

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)