diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-14 12:01:00 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-14 15:34:05 +0100 |
commit | 7108320a1295641a6d591d29edf01e3a4cc45e82 (patch) | |
tree | 216a472994556d08c127f2b535f77f9c41902e35 /example_project | |
parent | 5e121edfd6b3bb4de4344e2f631630bf94c3de0b (diff) | |
download | Ishtar-7108320a1295641a6d591d29edf01e3a4cc45e82.tar.bz2 Ishtar-7108320a1295641a6d591d29edf01e3a4cc45e82.zip |
Tests: use variable for fixtures paths
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index 33372bd5d..8248b6713 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -290,9 +290,7 @@ ISHTAR_PERMIT_TYPES = {} ISHTAR_DOC_TYPES = {"undefined": "Undefined"} ISHTAR_SEARCH_LANGUAGE = "french" - ISHTAR_SECURE = True - ISHTAR_DPTS = [] MAX_ATTEMPTS = 1 # django background tasks @@ -308,6 +306,9 @@ TEST_RUNNER = "ishtar_common.tests.ManagedModelTestRunner" SELENIUM_TEST = False CELERY_BROKER_URL = "" SENTRY_ID = None +DISTRIBUTION = "source" +LIB_BASE_PATH = ROOT_PATH + "../" +FIXTURE_AUTH_PATH = ROOT_PATH + "../" try: from custom_settings import * |