Skip to content

Commit 7472f5f

Browse files
committed
Update log path and compliance check in e2e-tests.yml
- Changed log path to use the LOCALAPPDATA environment variable for better compatibility. - Updated compliance check to match specific OS standard compliance information.
1 parent 1a3b9e4 commit 7472f5f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ jobs:
260260
$process | Stop-Process -Force
261261
262262
# Check if log directory was created
263-
$logPath = "${{ matrix.log_path_check }}"
263+
$logPath = "$env:LOCALAPPDATA\mcpproxy\logs"
264264
if (Test-Path $logPath) {
265265
Write-Host "✓ Log directory created successfully"
266266
Get-ChildItem $logPath
@@ -282,7 +282,7 @@ jobs:
282282
Write-Host "⚠ Log missing expected startup messages"
283283
}
284284
285-
if ($content -match "${{ matrix.log_standard }}") {
285+
if ($content -match "Windows Application Data Guidelines") {
286286
Write-Host "✓ Log contains OS standard compliance information"
287287
} else {
288288
Write-Host "⚠ Log missing OS standard compliance information"

0 commit comments

Comments
 (0)