Skip to content

Commit

Permalink
TST: Azure summarizes test failures
Browse files Browse the repository at this point in the history
* Azure CI will now properly report /
summarize tests that have failed
instead of automatically exiting
a run after the testsuite when
there are failures
  • Loading branch information
tylerjereddy committed Apr 5, 2019
1 parent 1f5dd63 commit 51870cd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ jobs:
cd ../scipy && \
F77=gfortran-5 F90=gfortran-5 python3.6 runtests.py --mode=full -- -n auto -rsx --junitxml=junit/test-results.xml"
displayName: 'Run 32-bit Ubuntu Docker Build / Tests'
continueOnError: true
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-*.xml'
failTaskOnFailedTests: true
testRunTitle: 'Publish test results for Python 3.6-32 bit full Linux'
- job: Windows
pool:
Expand Down Expand Up @@ -124,7 +126,9 @@ jobs:
$env:PATH = "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw$(BITS)\\bin;" + $env:PATH
python runtests.py -n --mode=$(TEST_MODE) -- -n auto -rsx --junitxml=junit/test-results.xml
displayName: 'Run SciPy Test Suite'
continueOnError: true
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-*.xml'
failTaskOnFailedTests: true
testRunTitle: 'Publish test results for Python $(python.version)'

0 comments on commit 51870cd

Please sign in to comment.