summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.azure-pipelines/steps.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.azure-pipelines/steps.yml b/.azure-pipelines/steps.yml
index 733ca0998e..b37a79f328 100644
--- a/.azure-pipelines/steps.yml
+++ b/.azure-pipelines/steps.yml
@@ -22,13 +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 -r rspec_junit_formatter bin/rspec --format progress --format RspecJunitFormatter -o rspec/bundler-junit-results.xml || exit 0
+ timeout 50m bash -c '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