Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -129,11 +129,17 @@ jobs:
echo "bundle exec rspec -s <seed-from-failed-build> $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
Loading