From 11626b816a71028320c6d74fa4746932c65e892a 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 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/scripts/run_smoke.py b/.github/scripts/run_smoke.py index 182d886..e170b7d 100644 --- a/.github/scripts/run_smoke.py +++ b/.github/scripts/run_smoke.py @@ -28,11 +28,7 @@ WORKSPACE = Path(__file__).resolve().parents[2] SMOKE_FILE = WORKSPACE / "smoke_tests.txt" -# Prefer the canonical profile name; fall back to the legacy env_vars.yaml -# until the stage-3 cleanup removes the fallback (#161 step 6). 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" # CI puts PyAutoHands/autohands on PYTHONPATH (PyAutoHeart's reusable