Skip to content

Commit

Permalink
more logging of coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
stepchud committed Dec 19, 2024
1 parent 53ec26e commit f0f317a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,15 @@ jobs:
--format RspecJunitFormatter \
--out /tmp/test-results/rspec.xml \
$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
head coverage/coverage.json
printf 'ls -l coverage\n'
ls -l coverage/
if [[ -s coverage/coverage.json ]]
then
printf "coverage file exists\n"
else
printf "coverage file does not exist\n"
fi
./cc-test-reporter format-coverage coverage/coverage.json \
--input-type simplecov \
--output coverage/codeclimate.rspec.3.2.4.json
Expand Down

0 comments on commit f0f317a

Please sign in to comment.