From f273c8070a33dba2771a71146dc5b75bf504bc95 Mon Sep 17 00:00:00 2001 From: Albert Yi Date: Fri, 11 May 2018 12:59:15 -0700 Subject: [PATCH] updates to circleci config --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 229b29a5f..0da3b37b8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,8 +44,8 @@ jobs: - run: name: Run tests command: | - docker-compose -f config/docker/compose.yml exec web bash -c 'curl -o /usr/bin/circleci https://circle-downloads.s3.amazonaws.com/releases/build_agent_wrapper/circleci && chmod +x /usr/bin/circleci' - docker-compose -f config/docker/compose.yml exec web bash -c 'circleci tests glob "test/**/*_test.rb" | circleci tests split | xargs bin/rails test' + docker-compose -f config/docker/compose.yml exec web bash -c 'curl -o /tmp/circleci https://circle-downloads.s3.amazonaws.com/releases/build_agent_wrapper/circleci && chmod +x /tmp/circleci' + docker-compose -f config/docker/compose.yml exec web bash -c '/tmp/circleci tests glob "test/**/*_test.rb" | /tmp/circleci tests split | xargs bin/rails test' - store_test_results: path: test/reports - run: