From b44a706e16129b19a463e308619c14a59a42bf7b Mon Sep 17 00:00:00 2001 From: Birger Schacht Date: Wed, 4 Oct 2023 13:51:50 +0200 Subject: [PATCH] fix: build docs without apis module --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index bd7039090..c681c8090 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ import sys, django sys.path.insert(0, os.path.abspath("../../")) -os.environ["DJANGO_SETTINGS_MODULE"] = "apis.settings.settings_test_ci" +os.environ["DJANGO_SETTINGS_MODULE"] = "tests.settings_ci" django.setup() # -- General configuration ------------------------------------------------