mirror of
https://github.com/sligter/LandPPT.git
synced 2026-08-28 23:31:06 +08:00
9 lines
314 B
Python
9 lines
314 B
Python
from pathlib import Path
|
|
|
|
|
|
def test_startup_dotenv_does_not_override_orchestrator_environment():
|
|
config_text = Path("src/landppt/core/config.py").read_text(encoding="utf-8")
|
|
|
|
assert "load_dotenv(env_path, override=False)" in config_text
|
|
assert "load_dotenv(env_path, override=True)" not in config_text
|