Fix display of test results summary on CircleCI (#219)

* Reduce pytest xml log size
* store artifact to debug
* Fix test result path
This commit is contained in:
Thom Wiggers 2019-08-07 10:03:17 +02:00 committed by GitHub
parent 68a7c01797
commit 56bb81d053
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -46,7 +46,9 @@ version: 2.1
python3 -m pytest --verbose --junitxml=test-results/pytest/results.xml --numprocesses=auto python3 -m pytest --verbose --junitxml=test-results/pytest/results.xml --numprocesses=auto
no_output_timeout: 2h no_output_timeout: 2h
- store_test_results: - store_test_results:
path: test-results path: test/test-results
- store_artifacts:
path: test/test-results
jobs: jobs:
arm64-gcc: arm64-gcc:

View File

@ -1,3 +1,4 @@
[pytest] [pytest]
norecursedirs = .git * norecursedirs = .git *
empty_parameter_set_mark = fail_at_collect empty_parameter_set_mark = fail_at_collect
junit_log_passing_tests = False