Sha256: 55f3cd376b94e1344b0376fe42bfb84afdb03da897b5ee9fca96c69d476b97c5

Contents?: true

Size: 928 Bytes

Versions: 3

Compression:

Stored size: 928 Bytes

Contents

version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.6.4
    working_directory: ~/repo
    steps:
      - checkout
      - run:
          name: install dependencies
          command: |
              bundle install --jobs=4 --retry=3 --path vendor/bundle
      - run:
          name: run tests
          command: |
            mkdir /tmp/test-results
            TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | \
              circleci tests split --split-by=timings)"

            COV=1 bundle exec rspec \
              --format progress \
              --format RspecJunitFormatter \
              --out /tmp/test-results/rspec.xml \
              --format progress \
              $TEST_FILES
      - store_test_results:
          path: /tmp/test-results
      - store_artifacts:
          path: /tmp/test-results
          destination: test-results
      - store_artifacts:
          path: coverage

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
big_session-0.1.2 .circleci/config.yml
big_session-0.1.1 .circleci/config.yml
big_session-0.1.0 .circleci/config.yml