merge testing->tomerge/main #7

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

View File

@@ -5,12 +5,14 @@ import os
import pathlib import pathlib
import subprocess import subprocess
import sys import sys
from pathlib import Path
import pytest import pytest
REPO = pathlib.Path(__file__).resolve().parent.parent REPO = pathlib.Path(__file__).resolve().parent.parent
DECNET_BIN = REPO / ".venv" / "bin" / "decnet" #DECNET_BIN = REPO / ".venv" / "bin" / "decnet"
DECNET_BIN = Path(sys.executable).parent / "decnet"
def _clean_env(**overrides: str) -> dict[str, str]: def _clean_env(**overrides: str) -> dict[str, str]: