swactor/apps/old-pipeline-parallel-inference/tests/conftest.py
Zachery Aaron Shores-Chmielewski 0ffc5fd275 feat: add mvp provisioning subsystem and datastream transport
mvp-system: provisioner actor, provisioning module, node_agent, dashboard_view,
observability_surface; expand gpu_worker ctl/ingress/egress and run_plan.
iroh-driver: replace relay binary with datastream_transport; datastream gains endpoint
abstraction. Archive pipeline-parallel-inference app to old-pipeline-parallel-inference.


Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-06-25 16:30:18 +04:00

11 lines
361 B
Python

"""pytest configuration for the pipeline-parallel-inference example.
Adds the example directory to ``sys.path`` so test modules can
``import pp_tinygrad_worker`` to exercise its pure helpers directly.
Tests that spawn the worker as a subprocess invoke it by path.
"""
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).parent.parent))