verify_gamma_fail.py file-level

at sha256:a · View file ↗ · Intel ↗

History
1 files
1 commits
0 hotspots
0 🧊 dead
0 💥 blast risk
sha256:8 docs: queue board-identity follow-ups so they survive the session Capt… · aaronrene · Sep 5, 2026
1 #!/usr/bin/env python3
2 """Fixture verify script — always fails."""
3
4 import sys
5
6
7 def main() -> int:
8 print("intentional failure", file=sys.stderr)
9 return 1
10
11
12 if __name__ == "__main__":
13 raise SystemExit(main())