feat: scaffold meshnet monorepo

This commit is contained in:
Dobromir Popov
2026-06-29 00:28:29 +03:00
parent 84614a36a4
commit 1141b51286
22 changed files with 487 additions and 2 deletions

19
conftest.py Normal file
View File

@@ -0,0 +1,19 @@
"""Root conftest: add all package source directories to sys.path for pytest discovery."""
import pathlib
import sys
_root = pathlib.Path(__file__).parent
_packages = [
"packages/node",
"packages/gateway",
"packages/tracker",
"packages/sdk",
"packages/contracts",
"packages/p2p",
]
for _pkg in _packages:
_path = str(_root / _pkg)
if _path not in sys.path:
sys.path.insert(0, _path)