ci: write test logging to console on Windows (#43990)

test: write logging to console on Windows
This commit is contained in:
John Kleinschmidt 2024-09-27 15:17:32 -04:00 committed by GitHub
parent d4e4cdee6c
commit 27d2a8f9e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View file

@ -328,4 +328,3 @@ for:
on_finish: on_finish:
# Uncomment these lines to enable RDP # Uncomment these lines to enable RDP
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
- if exist electron\electron.log ( appveyor-retry appveyor PushArtifact electron\electron.log )

View file

@ -308,7 +308,7 @@ for:
if ($env:TARGET_ARCH -eq 'ia32') { if ($env:TARGET_ARCH -eq 'ia32') {
$env:npm_config_arch = "ia32" $env:npm_config_arch = "ia32"
} }
- echo Running main test suite & node script/yarn test -- --trace-uncaught --runners=main --enable-logging=file --log-file=%cd%\electron.log - echo Running main test suite & node script/yarn test -- --trace-uncaught --runners=main --enable-logging
- cd .. - cd ..
- echo Verifying non proprietary ffmpeg & python electron\script\verify-ffmpeg.py --build-dir out\Default --source-root %cd% --ffmpeg-path out\ffmpeg - echo Verifying non proprietary ffmpeg & python electron\script\verify-ffmpeg.py --build-dir out\Default --source-root %cd% --ffmpeg-path out\ffmpeg
- echo "About to verify mksnapshot" - echo "About to verify mksnapshot"
@ -320,4 +320,3 @@ for:
on_finish: on_finish:
# Uncomment these lines to enable RDP # Uncomment these lines to enable RDP
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
- if exist electron\electron.log ( appveyor-retry appveyor PushArtifact electron\electron.log )