From 22ff6cd7beb31e849cbf2f8f338a6117410a9306 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sun, 29 Oct 2017 21:00:10 -0700 Subject: [PATCH] Copy test-results to ~/test. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a9c4c65..c54fdac 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,8 +34,8 @@ jobs: - run: name: Save Test Results command: | - mkdir -p ~/test/ - find . -type f -regex "build/test-results/test/.*xml" -exec cp {} ~/test/ \; + mkdir -p ~/test + cp -a build/reports/tests/test/. ~/test when: always - store_test_results: path: ~/test