tests on dash

This commit is contained in:
Dobromir Popov
2026-07-11 12:38:51 +03:00
parent 11bf460027
commit bb561a9665
7 changed files with 132 additions and 1 deletions

View File

@@ -43,6 +43,9 @@ def _load_env_defaults() -> None:
_load_env_file(Path.cwd() / f".env.{machine}")
_load_env_file(Path.cwd() / ".env")
_load_env_file(Path.home() / ".config" / "meshnet" / "secrets.env")
for path in os.environ.get("PYTHONPATH", "").split(os.pathsep):
if path and path not in sys.path:
sys.path.insert(0, path)
def _run_node(cfg: dict) -> None: