From 9b492d798bce0f2bce1f0c307e4002bf07120c5b Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Wed, 19 Sep 2018 12:53:08 -0500 Subject: [PATCH] CI: Publish test summary --- ci/azure/macos.yml | 4 ++++ ci/azure/windows-py27.yml | 6 +++++- ci/azure/windows.yml | 6 +++++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ci/azure/macos.yml b/ci/azure/macos.yml index 25b66615dac7e..5bf8d18d6cbb9 100644 --- a/ci/azure/macos.yml +++ b/ci/azure/macos.yml @@ -37,3 +37,7 @@ jobs: - script: | export PATH=$HOME/miniconda3/bin:$PATH source activate pandas && pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd + - task: PublishTestResults@2 + inputs: + testResultsFiles: '/tmp/*.xml' + testRunTitle: 'MacOS-35' diff --git a/ci/azure/windows-py27.yml b/ci/azure/windows-py27.yml index e60844896b71c..3e92c96263930 100644 --- a/ci/azure/windows-py27.yml +++ b/ci/azure/windows-py27.yml @@ -37,5 +37,9 @@ jobs: displayName: 'Build' - script: | call activate %CONDA_ENV% - pytest --skip-slow --skip-network pandas -n 2 -r sxX --strict %* + pytest --junitxml=test-data.xml --skip-slow --skip-network pandas -n 2 -r sxX --strict %* displayName: 'Test' + - task: PublishTestResults@2 + inputs: + testResultsFiles: 'test-data.xml' + testRunTitle: 'Windows 27' diff --git a/ci/azure/windows.yml b/ci/azure/windows.yml index 6090139fb4f3e..2ab8c6f320188 100644 --- a/ci/azure/windows.yml +++ b/ci/azure/windows.yml @@ -28,5 +28,9 @@ jobs: displayName: 'Build' - script: | call activate %CONDA_ENV% - pytest --skip-slow --skip-network pandas -n 2 -r sxX --strict %* + pytest --junitxml=test-data.xml --skip-slow --skip-network pandas -n 2 -r sxX --strict %* displayName: 'Test' + - task: PublishTestResults@2 + inputs: + testResultsFiles: 'test-data.xml' + testRunTitle: 'Windows 36'