diff options
author | Sviatoslav Sydorenko <wk@sydorenko.org.ua> | 2018-04-22 23:12:20 +0200 |
---|---|---|
committer | Sviatoslav Sydorenko <wk@sydorenko.org.ua> | 2018-04-22 23:12:20 +0200 |
commit | 565fff30c07b5034e77973236c42bd3371e76d3b (patch) | |
tree | 95a476180549797785308d5fa44adb92072890b2 | |
parent | 02b283b44e8edf90a2873a17fa010c863b2a7bf3 (diff) | |
download | cherrypy-git-565fff30c07b5034e77973236c42bd3371e76d3b.tar.gz |
Be more specific about test results dir
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 5ba0b03f..08952179 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,7 +26,7 @@ jobs: - checkout - run: tox -e py27,py34,py35,py36,pypy3 -- -p no:sugar - store_test_results: - path: .test-results + path: .test-results/pytest - store_artifacts: path: .test-results @@ -39,7 +39,7 @@ jobs: - run: pip install tox - run: tox -e py27,py34,py35,py36 - store_test_results: - path: .test-results + path: .test-results/pytest - store_artifacts: path: .test-results |