From f36e52a42d62903db542630f9a832928529be336 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Thu, 23 Jul 2026 18:31:22 +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 | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/scripts/run_smoke.py b/.github/scripts/run_smoke.py index 239f862..e0787b9 100644 --- a/.github/scripts/run_smoke.py +++ b/.github/scripts/run_smoke.py @@ -24,9 +24,6 @@ WORKSPACE = Path(__file__).resolve().parents[2] SMOKE_FILE = WORKSPACE / "smoke_tests.txt" ENV_VARS_FILE = WORKSPACE / "config" / "build" / "profile_smoke.yaml" -# Legacy fallback; retired at the stage-3 cleanup once all repos are renamed. -if not ENV_VARS_FILE.exists(): - ENV_VARS_FILE = WORKSPACE / "config" / "build" / "env_vars.yaml" SCRIPTS_DIR = WORKSPACE / "scripts"