summaryrefslogtreecommitdiff
path: root/azure/test.yml
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2019-06-04 08:06:53 +0200
committerJoe Watkins <krakjoe@php.net>2019-06-04 08:06:53 +0200
commitb2aef9e47ad769063b1ee3dcbcf441c50f19d0c6 (patch)
treea775aeffd28cc3ba71eaf568cab51bf1fc4e690c /azure/test.yml
parentd37c335118f0f8f412da7e9086c9ff6839d1c477 (diff)
downloadphp-git-b2aef9e47ad769063b1ee3dcbcf441c50f19d0c6.tar.gz
always run/publish tests, even when failing
Diffstat (limited to 'azure/test.yml')
-rw-r--r--azure/test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/azure/test.yml b/azure/test.yml
index 59dc71af62..f7491ea3fd 100644
--- a/azure/test.yml
+++ b/azure/test.yml
@@ -21,7 +21,7 @@ steps:
--set-timeout 120 \
${{ parameters.runTestsParameters }}
displayName: 'Test ${{ parameters.configurationName }} ${{ parameters.runTestsName }}'
- condition: always()
+ condition: and(failed())
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit'
@@ -29,4 +29,4 @@ steps:
testRunTitle: '${{ parameters.configurationName }} ${{ parameters.runTestsName }}'
failTaskOnFailedTests: true
displayName: 'Export ${{ parameters.configurationName }} ${{ parameters.runTestsName }} Results'
- condition: always()
+ condition: and(failed())