Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2020-05-03 14:15:45 +0300
committerEric Wieser <wieser.eric@gmail.com>2020-05-03 14:38:07 +0300
commitae57962b989030d39242eba3c16b8657962f365e (patch)
treef297d2f867dcade8221dee43905752b4b19303ed /.circleci
parentf6b6d753d75ee3340e8a9f67c0dd7ef464629b8d (diff)
Report junit pytest results to CircleCI
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 04c319340..7f4de4ae0 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -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