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}