Clean state

This commit is contained in:
Johnny Fernandes
2026-04-30 01:25:39 +01:00
commit bb3dfb92d5
266 changed files with 37043 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from pathlib import Path
import sys
# Full suite
# python -m unittest discover -s classifier/tests -p "test_*.py" -t classifier
# Allow `from src...` imports when tests are run from repo root.
ROOT = Path(__file__).resolve().parents[1]
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))