From 6ca17c3d5f4cb4d6dbbe69aba2ddd710a76d880f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 23 Sep 2019 07:36:10 -0400 Subject: [PATCH] reports --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ff67fe4..7c1db12 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,9 +25,9 @@ jobs: name: BATS tests [sharded] command: | cd tests - mkdir -p reports/bats + mkdir -p /app/reports/bats # bats $(circleci tests glob '*.bats' | circleci tests split) > "reports/bats/$CIRCLE_NODE_INDEX.tap" - bats *.bats > "reports/bats/$CIRCLE_NODE_INDEX.tap" + bats *.bats > "/app/reports/bats/$CIRCLE_NODE_INDEX.tap" - store_test_results: path: reports