ci: remove unused var

This commit is contained in:
Barrett Ruth 2026-03-05 10:37:13 -05:00
parent 3ecd200da7
commit 38cd0482f0
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
6 changed files with 186 additions and 3 deletions

13
t/cf_exact.py Normal file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env python3
"""Call _submit_headless directly, no asyncio."""
import json
import os
import sys
sys.path.insert(0, ".")
from scrapers.codeforces import _submit_headless
creds = json.loads(os.environ.get("CP_CREDENTIALS", "{}"))
result = _submit_headless("1933", "a", "int main(){}", "89", creds)
print(result.model_dump_json(indent=2))