We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8d9f37 commit a66d032Copy full SHA for a66d032
services/catalog/tests/unit/test_core_settings.py
@@ -8,14 +8,16 @@
8
from simcore_service_catalog.core.settings import ApplicationSettings
9
10
11
-def test_valid_web_application_settings(app_environment: EnvVarsDict):
+def test_valid_application_settings(app_environment: EnvVarsDict):
12
"""
13
We can validate actual .env files (also refered as `repo.config` files) by passing them via the CLI
14
15
$ ln -s /path/to/osparc-config/deployments/mydeploy.com/repo.config .secrets
16
$ pytest --external-envfile=.secrets --pdb tests/unit/test_core_settings.py
17
18
19
+ assert app_environment
20
+
21
settings = ApplicationSettings() # type: ignore
22
assert settings
23
0 commit comments