From 4a966a1591bd611f6460bb8a4b38fd30af042956 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Tue, 12 Mar 2019 19:29:41 -0400 Subject: [PATCH] Collect additional testing artifacts from Appveyor. --- .appveyor.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index c01b10912..8257fb932 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -71,6 +71,14 @@ artifacts: - path: 'dist\*' - path: trial_test_log.txt name: Trial test.log + - path: eliot.log + name: Eliot test log + +on_failure: + # Artifacts are not normally uploaded when the job fails. To get the test + # logs, we have to push them ourselves. + - ps: Push-AppveyorArtifact _trial_temp\test.log -Filename trial.log + - ps: Push-AppveyorArtifact eliot.log -Filename eliot.log #on_success: # You can use this step to upload your artifacts to a public website.