Jakub Chocholowicz
Jakub Chocholowicz
I saw this in Test Platform logs. Could you please try this: https://github.com/microsoft/vstest/blob/main/docs/troubleshooting.md#collect-logs-and-crash-dumphang
@ibiglari please install proc dump (https://github.com/microsoft/vstest/blob/main/docs/troubleshooting.md#collect-process-dump-using-procdump-on-windows-ie-outofmemory) and set PROCDUMP_PATH when running your tests.
@ibiglari in that case please remove `/Blame:"CollectDump;DumpType=Full;CollectHangDump;TestTimeout=30min;HangDumpType=Full"` stuff and before `VSTest@2` step add step: ``` - task: PowerShell@2 displayName: 'Download and enable ProcDump' inputs: targetType: inline script: | Add-MpPreference -ExclusionPath...