killbill-uncached
Changes
.circleci/config.yml 8(+4 -4)
Details
.circleci/config.yml 8(+4 -4)
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 6ca1665..addeb93 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -48,7 +48,7 @@ jobs:
name: Save test results
command: |
mkdir -p ~/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} ~/junit/ \;
+ find . -type f -regex ".*/target/surefire-reports/junitreports/.*xml" -exec cp {} ~/junit/ \;
when: always
- store_test_results:
path: ~/junit
@@ -87,7 +87,7 @@ jobs:
name: Save test results
command: |
mkdir -p ~/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} ~/junit/ \;
+ find . -type f -regex ".*/target/surefire-reports/junitreports/.*xml" -exec cp {} ~/junit/ \;
when: always
- store_test_results:
path: ~/junit
@@ -112,7 +112,7 @@ jobs:
name: Save test results
command: |
mkdir -p ~/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} ~/junit/ \;
+ find . -type f -regex ".*/target/surefire-reports/junitreports/.*xml" -exec cp {} ~/junit/ \;
when: always
- store_test_results:
path: ~/junit
@@ -168,7 +168,7 @@ jobs:
set -e
bundle exec rake test:core | tee /tmp/test-results/test.txt 2>&1
- store_test_results:
- path: /tmp/test-results
+ path: test/reports/
- store_artifacts:
path: /tmp/test-results