From d9340cf8c2901cc2c4b4526b27af7057a5c8e292 Mon Sep 17 00:00:00 2001 From: rfaircloth-splunk Date: Wed, 5 Feb 2020 17:46:47 -0500 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 476630e..6188f71 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -65,15 +65,24 @@ test: &test name: Setup for testing command: | pip install -r tests/requirements.txt - mkdir test-reports + mkdir test-results - run: name: test command: | pytest \ -v \ --splunk_type=docker --splunk_password=${SPLUNK_PASSWORD} - --junitxml=test-reports/apptest-${SYSLOG}-${SPLUNK}.xml + --junitxml=test-results/apptest-${SYSLOG}-${SPLUNK}.xml no_output_timeout: 1h + - run: + name: get logs + command: docker-compose -f test/docker-compose.yml + when: always + - store_artifacts: + path: test-results + destination: apptest-${SYSLOG}-${SPLUNK} + - store_test_results: + path: test-results orbs: