Circleci Test Splitting with specific tests isn't showing a test summary

I believe I have my circleci/config.yml file set up to successfully split by timings. However, when I try to scope by which specific tests to run my test summary no longer shows up. I’m wondering If I’ve incorrectly set up this portion of my circle config or if test splitting simply doesn’t support scoping by tests.

My splitting and test run config:

- run:
    name: RSpec test suite
    command: |
      TESTFILES=$(circleci tests glob "spec/specficic_tests/*_spec.rb,spec/specficic_tests/*_spec.rb,spec/specficic_tests/*_spec.rb,spec/specficic_tests/*_spec.rb,spec/specficic_tests/*_spec.rb,spec/specficic_tests/*_spec.rb,spec/specficic_tests/*_spec.rb,spec/specficic_tests/*_spec.rb" | circleci tests split --split-by=timings)
      bundle exec rspec --format progress \
        --format RspecJunitFormatter \
        --out $CIRCLE_TEST_REPORTS/rspec.xml \
        -- ${TESTFILES}

It looks like you’re trying to post YAML. To format this in Markdown, use a triple-backtick at the start and end, like so:

```
yaml
```

That will make the YAML readable, so readers can check things like structure and indentation.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.