summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2018-04-22 22:58:12 +0200
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2018-04-22 22:58:12 +0200
commit02b283b44e8edf90a2873a17fa010c863b2a7bf3 (patch)
tree854e795f19ee8fbe8238fd40763ccf5e064e7b99 /.circleci
parent4b0f8ae7eda78b994e516b1438ac5ae6721d96ea (diff)
downloadcherrypy-git-02b283b44e8edf90a2873a17fa010c863b2a7bf3.tar.gz
Store test results as artifacts in Circle CI
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index bd90face..5ba0b03f 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -27,6 +27,8 @@ jobs:
- run: tox -e py27,py34,py35,py36,pypy3 -- -p no:sugar
- store_test_results:
path: .test-results
+ - store_artifacts:
+ path: .test-results
linux-build:
docker:
@@ -38,6 +40,8 @@ jobs:
- run: tox -e py27,py34,py35,py36
- store_test_results:
path: .test-results
+ - store_artifacts:
+ path: .test-results
workflows:
version: 2