Fixed test results location again.

This commit is contained in:
Erik C. Thauvin 2017-10-29 20:49:47 -07:00
parent 291e5488af
commit 75118c5a50

View file

@ -19,7 +19,7 @@ jobs:
- gradle-dependencies-
- run:
name: Gradle dependencies
name: Gradle Dependencies
command: ./gradlew dependencies
- save_cache:
@ -32,10 +32,10 @@ jobs:
command: ./gradlew test
- run:
name: Save test results
name: Save Test Results
command: |
mkdir -p ~/test/
find . -type f -regex ".*/build/test-results/test/.*xml" -exec cp {} ~/junit/ \;
find . -type f -regex "build/test-results/test/.*xml" -exec cp {} ~/junit/ \;
when: always
- store_test_results:
path: ~/test