From 65d72d0244e47b5e10467ed1c3c9dd3b993ff028 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Fri, 26 Apr 2019 13:57:09 +0200 Subject: [PATCH] [CI] CircleCI: save test results (#4974) It should be a path to a directory, not a file. https://circleci.com/docs/2.0/configuration-reference/#store_test_results > Path (absolute, or relative to your working_directory) to directory containing subdirectories of JUnit XML or Cucumber JSON test metadata files Perhaps the file needs to be named results.xml. We'll see. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bdade3505..63afc62e1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -66,7 +66,7 @@ jobs: command: .ci/after_success.sh # by storing the test results CircleCI automatically distributes tests based on execution time - store_test_results: - path: koreader-emulator-x86_64-linux-gnu/koreader/junit-test-results.xml + path: koreader-emulator-x86_64-linux-gnu/koreader # CircleCI doesn't make the test results available as artifacts (October 2017) - store_artifacts: path: koreader-emulator-x86_64-linux-gnu/koreader/junit-test-results.xml