mirror of
https://github.com/ratspeak/C6-Reticulum-ASM
synced 2026-08-12 18:07:18 -04:00
20 lines
511 B
Python
20 lines
511 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
"""Repo-root entrypoint that forwards to tests/harness/verify.py.
|
||
|
|
|
||
|
|
The shell wrapper `./verify` execs this so users get a uniform command from
|
||
|
|
the repo root regardless of platform conventions for shell scripts.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
import sys
|
||
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
REPO_ROOT = Path(__file__).resolve().parent
|
||
|
|
sys.path.insert(0, str(REPO_ROOT / "tests"))
|
||
|
|
|
||
|
|
from harness import verify # noqa: E402
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
sys.exit(verify.main(sys.argv[1:]))
|