Skip to content

Commit

Permalink
ci: Don't run codecov on additional platforms.
Browse files Browse the repository at this point in the history
The coverage data for the platform where we run the backend+frontend
tests should be complete, so there's no reason to upload coverage data
for the other platforms.

Hopefully this change will decrease the likelihood of codecov
producing flaky results.
  • Loading branch information
timabbott committed May 20, 2019
1 parent 77ab9a0 commit c2baca2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ jobs:
- *save_cache_requirements
- *run_backend_tests
- *run_frontend_tests
# We only need to upload coverage reports on whichever platform
# runs the frontend tests.
- *upload_coverage_report

# - store_artifacts: # TODO
Expand All @@ -125,7 +127,6 @@ jobs:
- *save_cache_package_json
- *save_cache_requirements
- *run_backend_tests
- *upload_coverage_report

"bionic-backend-python3.6":
docker:
Expand Down Expand Up @@ -153,7 +154,6 @@ jobs:
- *save_cache_package_json
- *save_cache_requirements
- *run_backend_tests
- *upload_coverage_report

workflows:
version: 2
Expand Down

0 comments on commit c2baca2

Please sign in to comment.