Skip to content

Commit a66d032

Browse files
committed
updates catalog
1 parent e8d9f37 commit a66d032

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

services/catalog/tests/unit/test_core_settings.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@
88
from simcore_service_catalog.core.settings import ApplicationSettings
99

1010

11-
def test_valid_web_application_settings(app_environment: EnvVarsDict):
11+
def test_valid_application_settings(app_environment: EnvVarsDict):
1212
"""
1313
We can validate actual .env files (also refered as `repo.config` files) by passing them via the CLI
1414
1515
$ ln -s /path/to/osparc-config/deployments/mydeploy.com/repo.config .secrets
1616
$ pytest --external-envfile=.secrets --pdb tests/unit/test_core_settings.py
1717
1818
"""
19+
assert app_environment
20+
1921
settings = ApplicationSettings() # type: ignore
2022
assert settings
2123

0 commit comments

Comments
 (0)