diff options
| author | Max Nanis | 2026-02-25 16:20:18 -0500 |
|---|---|---|
| committer | Max Nanis | 2026-02-25 16:20:18 -0500 |
| commit | 04aee0dc7e908ce020d2d2c3f8ffb4a96424b883 (patch) | |
| tree | efb99622da9a962a73921a945373c019f98e6273 /jb/settings.py | |
| parent | 8c1940445503fd6678d0961600f2be81622793a2 (diff) | |
| download | amt-jb-04aee0dc7e908ce020d2d2c3f8ffb4a96424b883.tar.gz amt-jb-04aee0dc7e908ce020d2d2c3f8ffb4a96424b883.zip | |
test_notification (for sns mgmt), along with more type hinting on pytest conftest
Diffstat (limited to 'jb/settings.py')
| -rw-r--r-- | jb/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jb/settings.py b/jb/settings.py index 5754add..d529591 100644 --- a/jb/settings.py +++ b/jb/settings.py @@ -60,12 +60,12 @@ class TestSettings(Settings): model_config = SettingsConfigDict( env_prefix="", case_sensitive=False, - env_file=os.path.join(BASE_DIR, ".env.dev"), + env_file=os.path.join(BASE_DIR, ".env.test"), extra="allow", cli_parse_args=False, ) debug: bool = True - app_name: str = "AMT JB API Development" + app_name: str = "AMT JB API Test" @lru_cache |
