diff --git a/.circleci/config.yml b/.circleci/config.yml index 9aeeb0c..57dcdbe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -78,9 +78,9 @@ test: &test when: always command: | docker container create --name dummy \ - -v sc4s-tests_results:/work/test-results \ + -v tests_results:/work/test-results \ registry.access.redhat.com/ubi7/ubi - docker cp dummy:/work/test-results test-results/ + docker cp dummy:/work/test-results/test.xml test-results/ - store_artifacts: path: test-results destination: apptest-${SYSLOG}-${SPLUNK} diff --git a/tests/entrypoint.sh b/tests/entrypoint.sh index 8559e00..0dc3697 100755 --- a/tests/entrypoint.sh +++ b/tests/entrypoint.sh @@ -6,4 +6,4 @@ pytest -v \ --splunk_password=${SPLUNK_PASSWORD} \ --sc4s_host=sc4s \ --splunk_host=splunk \ - --junitxml=/work/test-results/functional/functional.xml $@ + --junitxml=/work/test-results/test.xml $@