fix(ci): map @TheGardenGallery email + drop unused pytest import

- check-attribution: add chilltulpa@gmail.com -> TheGardenGallery to
  AUTHOR_MAP in scripts/release.py (new external contributor via the
  carried-over commits).
- ty: the dashboard back-compat test imported pytest but never used it,
  tripping unresolved-import. Drop the dead import — tests are plain
  functions driving the parser via subprocess, no pytest API needed.
This commit is contained in:
Brooklyn Nicholson 2026-06-06 12:39:15 -05:00 committed by brooklyn!
parent 146e77684b
commit 003110c107
2 changed files with 1 additions and 2 deletions

View File

@ -45,6 +45,7 @@ ACP_REGISTRY_MANIFEST = REPO_ROOT / "acp_registry" / "agent.json"
# Auto-extracted from noreply emails + manual overrides
AUTHOR_MAP = {
"chilltulpa@gmail.com": "TheGardenGallery",
"al@randomsnowflake.me": "randomsnowflake",
"834740219@qq.com": "ViewWay",
"harjoth.khara@gmail.com": "harjothkhara",

View File

@ -20,8 +20,6 @@ import os
import subprocess
import sys
import pytest
REPO_ROOT = os.path.abspath(
os.path.join(os.path.dirname(__file__), os.pardir, os.pardir)
)