From 291e5488afd6f7b99b62303f4a1fa6bf58937afc Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sun, 29 Oct 2017 20:47:51 -0700 Subject: [PATCH] Fixed test results location. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3c82ef6..6a09428 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,7 +35,7 @@ jobs: name: Save test results command: | mkdir -p ~/test/ - find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/junit/ \; + find . -type f -regex ".*/build/test-results/test/.*xml" -exec cp {} ~/junit/ \; when: always - store_test_results: path: ~/test