From e18b768ec87aabbdef920ea7c4a5597e16d10b61 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Thu, 23 Jul 2026 18:31:13 +0100 Subject: [PATCH] chore: drop legacy env_vars.yaml fallback from run_smoke (#161 step 6, stage 3) The step-6 rename is complete; the runner reads config/build/profile_smoke.yaml only. The validator now errors on legacy names (PyAutoHands stage-3 PR). Co-Authored-By: Claude Fable 5 --- .github/scripts/run_smoke.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/scripts/run_smoke.py b/.github/scripts/run_smoke.py index cada95aaf..70a1b97a3 100644 --- a/.github/scripts/run_smoke.py +++ b/.github/scripts/run_smoke.py @@ -36,11 +36,7 @@ WORKSPACE = Path(__file__).resolve().parents[2] SMOKE_FILE = WORKSPACE / "smoke_tests.txt" NOTEBOOK_FILE = WORKSPACE / "smoke_notebooks.txt" -# Prefer the canonical profile name; the legacy env_vars.yaml fallback is -# retired at the stage-3 cleanup (PyAutoHands#161). ENV_VARS_FILE = WORKSPACE / "config" / "build" / "profile_smoke.yaml" -if not ENV_VARS_FILE.exists(): - ENV_VARS_FILE = WORKSPACE / "config" / "build" / "env_vars.yaml" SCRIPTS_DIR = WORKSPACE / "scripts" NOTEBOOKS_DIR = WORKSPACE / "notebooks"