merge testing->tomerge/main #7

Open
anti wants to merge 242 commits from testing into tomerge/main
Showing only changes of commit f064690452 - Show all commits

View File

@@ -5,6 +5,7 @@ from __future__ import annotations
import importlib import importlib
import os import os
import sys import sys
from pathlib import Path
import pytest import pytest
@@ -41,7 +42,8 @@ def test_agent_cli_imports_without_jwt_secret(monkeypatch, tmp_path):
clean_env["PATH"] = os.environ["PATH"] clean_env["PATH"] = os.environ["PATH"]
clean_env["HOME"] = str(tmp_path) clean_env["HOME"] = str(tmp_path)
repo = pathlib.Path(__file__).resolve().parent.parent repo = pathlib.Path(__file__).resolve().parent.parent
binary = repo / ".venv" / "bin" / "decnet" # binary = repo / ".venv" / "bin" / "decnet"
binary = Path(sys.executable).parent / "decnet"
result = subprocess.run( result = subprocess.run(
[str(binary), "agent", "--help"], [str(binary), "agent", "--help"],
cwd=str(tmp_path), cwd=str(tmp_path),