killbill-uncached

circleci: update find command for tests Signed-off-by:

6/21/2018 12:27:23 AM

Changes

Details

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 528284c..c5326d3 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -180,7 +180,7 @@ jobs:
           name: Save test results
           command: |
             mkdir -p ~/junit/
-            find test/reports -type f -name "*.xml" -exec cp {} ~/junit/ \;
+            find . -type f -regex ".*/test/reports/.*xml" -exec cp {} ~/junit/ \;
           when: always
       - store_test_results:
           path: ~/junit