From 6436db3513560fa284dfbbb39091e5fe2dab6e7d Mon Sep 17 00:00:00 2001 From: James Adams Date: Thu, 30 Jan 2020 09:25:25 -0500 Subject: [PATCH] updated the CircleCI config file to have a store test results step #53 --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2474763..b0b5732 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -72,6 +72,10 @@ jobs: . venv/bin/activate tox + # store artifacts (for example logs, binaries, etc) + # to be available in the web app or through the API - store_artifacts: path: test-reports - destination: test-reports + + - store_test_results: + path: test-results