Skip to content

Commit

Permalink
Move test reporter configuration to circleCI
Browse files Browse the repository at this point in the history
Installing it is superfast and upgrading here is easier.
  • Loading branch information
deivid-rodriguez committed Mar 29, 2018
1 parent 6ccf926 commit cf11a56
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ steps: &steps
steps:
- checkout

- run:
name: Install coverage reporter
command: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > cc-test-reporter
chmod +x cc-test-reporter
- restore_cache:
keys:
- dependencies-{{ checksum "Gemfile.lock" }}
Expand Down
4 changes: 0 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,4 @@ RUN apt-get update && apt-get install -y --no-install-recommends \

ENV BUNDLE_SILENCE_ROOT_WARNING=1

RUN TEST_REPORTER_URL=https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 \
&& wget -O /usr/local/bin/cc-test-reporter $TEST_REPORTER_URL \
&& chmod +x /usr/local/bin/cc-test-reporter

WORKDIR /byebug

0 comments on commit cf11a56

Please sign in to comment.