From 56bb81d053b1898af20ba67dd926183a652d9ea4 Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Wed, 7 Aug 2019 10:03:17 +0200 Subject: [PATCH] Fix display of test results summary on CircleCI (#219) * Reduce pytest xml log size * store artifact to debug * Fix test result path --- .circleci/config.yml | 4 +++- test/pytest.ini | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b8a6e3e6..0a32bff0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -46,7 +46,9 @@ version: 2.1 python3 -m pytest --verbose --junitxml=test-results/pytest/results.xml --numprocesses=auto no_output_timeout: 2h - store_test_results: - path: test-results + path: test/test-results + - store_artifacts: + path: test/test-results jobs: arm64-gcc: diff --git a/test/pytest.ini b/test/pytest.ini index ebd92a3b..204dfc00 100644 --- a/test/pytest.ini +++ b/test/pytest.ini @@ -1,3 +1,4 @@ [pytest] norecursedirs = .git * empty_parameter_set_mark = fail_at_collect +junit_log_passing_tests = False