summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorTyler Reddy <tyler.je.reddy@gmail.com>2019-04-02 15:54:10 -0700
committerTyler Reddy <tyler.je.reddy@gmail.com>2019-04-02 15:54:10 -0700
commit96e9b1d50cbf957ad4d4805f9dbeae68bd6f1078 (patch)
tree148be0b8f9d231b3853832c6db0398e237af6e8b /azure-pipelines.yml
parent8edc43850d1a5670c36bbfdcc97e5f67fa297071 (diff)
downloadnumpy-96e9b1d50cbf957ad4d4805f9dbeae68bd6f1078.tar.gz
TST: fail Azure CI if test failures
* fail Azure CI after test publication when there are test failures
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index d240e587f..4e8a8d654 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -32,7 +32,7 @@ jobs:
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-*.xml'
- failTaskOnFailedTests: false
+ failTaskOnFailedTests: true
testRunTitle: 'Publish test results for Python 3.6-32 bit full Linux'
- job: macOS
pool:
@@ -105,7 +105,7 @@ jobs:
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-*.xml'
- failTaskOnFailedTests: false
+ failTaskOnFailedTests: true
testRunTitle: 'Publish test results for Python 3.6 64-bit full Mac OS'
- job: Windows
pool:
@@ -208,5 +208,5 @@ jobs:
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-*.xml'
- failTaskOnFailedTests: false
+ failTaskOnFailedTests: true
testRunTitle: 'Publish test results for Python $(PYTHON_VERSION) $(BITS)-bit $(TEST_MODE) Windows'