From b7ab364aab0402587920b5eb8a5a8a81e26de226 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Tue, 20 Aug 2024 08:29:54 +0200 Subject: [PATCH] adds "testing" operation mode --- src/pydase/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pydase/config.py b/src/pydase/config.py index eaebd81..f3dd066 100644 --- a/src/pydase/config.py +++ b/src/pydase/config.py @@ -5,7 +5,7 @@ from confz import BaseConfig, EnvSource class OperationMode(BaseConfig): # type: ignore[misc] - environment: Literal["development", "production"] = "development" + environment: Literal["testing", "development", "production"] = "development" CONFIG_SOURCES = EnvSource(allow=["ENVIRONMENT"])