From 858047c477ca72de5ed951e140b3b7d6c6b1a052 Mon Sep 17 00:00:00 2001 From: Clint Branham Date: Wed, 25 Mar 2026 13:21:53 -0500 Subject: [PATCH] fix: check correct config path in dev.ps1 integration readiness check Config file is at /opt/pve-isos/test-config.json (CACHE_DIR default), not /tmp/pve-integration/config.json. Co-Authored-By: Claude Opus 4.6 (1M context) --- tests/dev.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dev.ps1 b/tests/dev.ps1 index 1ce3361..76c88db 100644 --- a/tests/dev.ps1 +++ b/tests/dev.ps1 @@ -237,7 +237,7 @@ if ($Integration) { Start-InfraContainer # Verify environment is ready (config file exists from provisioning) - $configCheck = docker exec $InfraContainer bash -c 'test -f /tmp/pve-integration/config.json && echo OK || echo MISSING' + $configCheck = docker exec $InfraContainer bash -c 'test -f "${CONFIG_FILE:-/opt/pve-isos/test-config.json}" && echo OK || echo MISSING' if ($configCheck.Trim() -eq 'MISSING' -and -not $Provision) { throw "Integration environment not ready. Run with -Provision first, or use -Provision -Integration together." }