Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate separate coverage reports for frontend and backend #7151

Merged
merged 17 commits into from
Jul 31, 2019
Prev Previous commit
Next Next commit
remove c
  • Loading branch information
Rishav Chakraborty committed Jul 25, 2019
commit ccccfa69d45fb6f0ac536d730dd003ca7d7ce3fc
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
name: Generate frontend coverage report
command: |
sudo pip install codecov
codecov --file ../karma_coverage_reports/lcov.info -c -F frontend
codecov --file ../karma_coverage_reports/lcov.info -F frontend
when: on_success

backend_tests:
Expand All @@ -100,7 +100,7 @@ jobs:
name: Generate backend coverage report
command: |
sudo pip install codecov
codecov -c -F backend
codecov -F backend
./cc-test-reporter format-coverage -t coverage.py coverage.xml
./cc-test-reporter sum-coverage coverage/codeclimate.json
./cc-test-reporter upload-coverage
Expand Down