From 5b82720b36700bd8a8e138b0387ad22e4e404532 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 ------------------------------------------------