verify_gamma_fail.py python
13 lines 223 B
Raw
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4 docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit. Human 4 days ago
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())
File History 1 commit
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4 docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit. Human 4 days ago