You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Occasionally the Windows tests will hang after all tests have completed
until the GitHub action times out. Using `Start-Process` with the
`-Wait` flag will wait for the process and all of its child processes to
terminate. This means that if the VS Code instance under test has any
lingering processes the build may hang forever.
Instead run the test command directly, referencing the success status
with `$LASTEXITCODE`. This should hopefully report the status more
reliably without hanging.
0 commit comments