Sha256: d652fe780e47b0417d7cac040285ffdb0db0e5860a5de7812083c822045b0f74

Contents?: true

Size: 656 Bytes

Versions: 4

Compression:

Stored size: 656 Bytes

Contents

version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.4.4
    steps:
      - checkout
      - run:
          name: Bundle Install
          command: bundle check || bundle install
      - run:
          name: Run rspec in parallel
          command: |
            bundle exec rspec --profile 10 \
                              --format RspecJunitFormatter \
                              --out test_results/rspec.xml \
                              --format progress \
                              $(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
      - store_test_results:
          path: test_results

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
restful_resource-2.5.2 .circleci/config.yml
restful_resource-2.5.1 .circleci/config.yml
restful_resource-2.5.0 .circleci/config.yml
restful_resource-2.4.0 .circleci/config.yml