summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-10-31 13:20:00 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-10-31 16:42:17 +0100
commit653c57642490d0892150cb2756321e1c39a6a64f (patch)
treeff9581676cc1894e68dfc604fe2f20026008219f
parent5ba1360de631e2fabf2bfa998b104c4355c58b13 (diff)
downloadbundler-better_azure_debug.tar.gz
Remove junit formatter in Azure for the momentbetter_azure_debug
Given the still high amount of failures we currently still have, I think it's better to show the whole output inline like in TravisCI.
-rw-r--r--.azure-pipelines/steps.yml13
1 files changed, 1 insertions, 12 deletions
diff --git a/.azure-pipelines/steps.yml b/.azure-pipelines/steps.yml
index 1aedc8a4f8..ba06cab7df 100644
--- a/.azure-pipelines/steps.yml
+++ b/.azure-pipelines/steps.yml
@@ -24,16 +24,5 @@ steps:
displayName: 'ruby bin/rake spec:deps'
- script: |
- gem install --no-document --conservative rspec_junit_formatter
- displayName: 'gem install rspec_junit_formatter'
-
-- script: |
- ruby -r rspec_junit_formatter bin/rspec --format RspecJunitFormatter -o rspec/bundler-junit-results.xml || exit 0
+ ruby bin/rspec || exit 0
displayName: 'ruby bin/rspec'
-
-- task: PublishTestResults@2
- inputs:
- testRunner: JUnit
- testResultsFiles: rspec/bundler-junit-results.xml
- displayName: Publish test results
- condition: succeededOrFailed()