first stab at adding video

This commit is contained in:
2026-04-12 04:11:52 -04:00
parent 680c5b04cc
commit 2818b41004
37 changed files with 2982 additions and 24 deletions
+11
View File
@@ -0,0 +1,11 @@
"""Pytest configuration.
Ensures the project root is on ``sys.path`` so tests can import ``server.*``
without installing the project as a package.
"""
import os
import sys
_ROOT = os.path.dirname(os.path.abspath(__file__))
if _ROOT not in sys.path:
sys.path.insert(0, _ROOT)