From 3384a97436cbf7e27b50efd82f7c65848d9f37c4 Mon Sep 17 00:00:00 2001 From: Robert Fletcher Date: Sun, 26 Jul 2026 10:59:56 -0700 Subject: [PATCH] CI: adjust artifacts to store correctly --- .circleci/config.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 818d65319..8063ca03e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -116,7 +116,7 @@ jobs: COVERAGE=true bundle exec rspec \ --format progress \ --format RspecJunitFormatter \ - --out /tmp/test-results/rspec.xml \ + --out /tmp/test-results/unit/rspec.xml \ $TEST_FILES - run: @@ -129,11 +129,17 @@ jobs: echo "bundle exec rspec -s $TEST_FILES" echo "********************************************************" + mkdir -p tmp/capybara + COVERAGE=false xvfb-run -a bundle exec rspec \ --format progress \ --format RspecJunitFormatter \ - --out /tmp/test-results/rspec.xml \ + --out /tmp/test-results/system/rspec.xml \ $TEST_FILES - store_test_results: - path: test_results + path: /tmp/test-results + + - store_artifacts: + path: tmp/capybara + destination: capybara