From 950ef86f338210b52958af66c68c537556d8083b Mon Sep 17 00:00:00 2001 From: Mitsuo Takaki Date: Sat, 23 Feb 2019 21:46:16 -0800 Subject: [PATCH] Trying to integrate codacy and coveralls back into the build, now using circleci --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 867bf88..7fa4763 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,6 +30,7 @@ jobs: source bin/activate pip3 install -r dev_requirements.txt python3 setup.py install + pip3 install coveralls - save_cache: paths: @@ -40,7 +41,10 @@ jobs: name: run tests command: | . bin/activate - py.test tests --junitxml=test-reports/junit.xml + py.test tests --junitxml=test-reports/junit.xml --cov=cachet_url_monitor + coveralls + coverage xml + python-codacy-coverage -r coverage.xml - store_test_results: path: test-reports