summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Piotrowski <piotrowski+github@gmail.com>2019-02-11 00:30:04 +0100
committerJan Piotrowski <piotrowski+git@gmail.com>2019-02-11 11:15:57 +0100
commit8ace8a56cdc75bba5fcfc65fc65545de4e99e824 (patch)
treea952286aa848758b043ae2bc1c53c903ef681527
parent4a1f0740a4945ef3691ad946ab573434abda76f0 (diff)
downloadbundler-8ace8a56cdc75bba5fcfc65fc65545de4e99e824.tar.gz
manually install rspec_junit_formatter
-rw-r--r--azure-pipelines/steps.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/azure-pipelines/steps.yml b/azure-pipelines/steps.yml
index 68346ac27d..548847c910 100644
--- a/azure-pipelines/steps.yml
+++ b/azure-pipelines/steps.yml
@@ -22,9 +22,13 @@ steps:
- script: |
ruby bin/rake spec:deps
displayName: 'ruby bin/rake spec:deps'
+
+- script: |
+ gem install --no-document --conservative rspec_junit_formatter
+ displayName: 'gem install rspec_junit_formatter'
- script: |
- ruby bin/rspec --format progress -r rspec_junit_formatter --format RspecJunitFormatter -o rspec/bundler-junit-results.xml || exit 0
+ ruby -r rspec_junit_formatter bin/rspec --format progress --format RspecJunitFormatter -o rspec/bundler-junit-results.xml || exit 0
displayName: 'ruby bin/rspec'
- task: PublishTestResults@2