Merge pull request #7599 from eric-wieser/report-xml

Report junit pytest failures to CircleCI
This commit is contained in:
Takeshi KOMIYA 2020-05-03 21:31:24 +09:00 committed by GitHub
commit e23f52b7f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,4 +8,7 @@ jobs:
- checkout
- run: /python3.6/bin/pip install -U pip setuptools
- run: /python3.6/bin/pip install -U .[test]
- run: make test PYTHON=/python3.6/bin/python
- run: mkdir -p test-reports/pytest
- run: make test PYTHON=/python3.6/bin/python TEST=--junitxml=test-reports/pytest/results.xml
- store_test_results:
path: test-reports