audit-labs/evidence-seal
Tamper-evident seals and chain of custody for audit evidence.
clone: git clone https://gitbay.org/audit-labs/evidence-seal.git
v0.1.0: conftest.py · raw
1"""Pin the project root on sys.path so ``import evidence_seal`` works in tests."""
2
3import sys
4from pathlib import Path
5
6sys.path.insert(0, str(Path(__file__).parent))