* docs: organize Python helpers and refresh README * docs: add README status badges * test: centralize Python helper test imports * docs: add short provenance disclaimer
6 lines
177 B
Python
6 lines
177 B
Python
from pathlib import Path
|
|
import sys
|
|
|
|
# Make the sibling `python/` helper modules importable from this test package.
|
|
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
|