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>
11 lines
361 B
Python
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))
|