Skip to content

Commit 5169a54

Browse files
authored
Update windows_concurrency_test.yml
1 parent 574301b commit 5169a54

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/windows_concurrency_test.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,21 @@ jobs:
6868
6969
if ($PYTHON_39_EXE) {
7070
Write-Host "Priming Python 3.9 by forcing KB rebuild..."
71-
& $PYTHON_39_EXE -m omnipkg.cli reset --yes 2>$null
71+
Write-Host "Command: $PYTHON_39_EXE -m omnipkg.cli reset --yes"
72+
& $PYTHON_39_EXE -m omnipkg.cli reset --yes
73+
Write-Host "Exit code: $LASTEXITCODE"
7274
}
7375
if ($PYTHON_310_EXE) {
7476
Write-Host "Priming Python 3.10 by forcing KB rebuild..."
75-
& $PYTHON_310_EXE -m omnipkg.cli reset --yes 2>$null
77+
Write-Host "Command: $PYTHON_310_EXE -m omnipkg.cli reset --yes"
78+
& $PYTHON_310_EXE -m omnipkg.cli reset --yes
79+
Write-Host "Exit code: $LASTEXITCODE"
7680
}
7781
if ($PYTHON_311_EXE) {
7882
Write-Host "Priming Python 3.11 by forcing KB rebuild..."
79-
& $PYTHON_311_EXE -m omnipkg.cli reset --yes 2>$null
83+
Write-Host "Command: $PYTHON_311_EXE -m omnipkg.cli reset --yes"
84+
& $PYTHON_311_EXE -m omnipkg.cli reset --yes
85+
Write-Host "Exit code: $LASTEXITCODE"
8086
}
8187
8288
Write-Host "✅ All Python environments primed."

0 commit comments

Comments
 (0)