killbill-memoizeit

Merge branch 'work-for-release-0.19.x' of github.com:killbill/killbill

6/19/2018 7:50:07 PM

Changes

Details

diff --git a/.circleci/config.yml b/.circleci/config.yml
index b81ff31..528284c 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -176,10 +176,16 @@ jobs:
 
             set -e
             bundle exec rake ci:core | tee /tmp/test-results/test.txt 2>&1
+      - run:
+          name: Save test results
+          command: |
+            mkdir -p ~/junit/
+            find test/reports -type f -name "*.xml" -exec cp {} ~/junit/ \;
+          when: always
       - store_test_results:
-          path: test/reports/
+          path: ~/junit
       - store_artifacts:
-          path: /tmp/test-results
+          path: ~/junit
 
 workflows:
   version: 2