From c2baca2c78c651cb1a6d512b922333b522e7f454 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Mon, 20 May 2019 11:02:58 -0700 Subject: [PATCH] ci: Don't run codecov on additional platforms. 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. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cca1a0c755..70e30a8562 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -125,7 +127,6 @@ jobs: - *save_cache_package_json - *save_cache_requirements - *run_backend_tests - - *upload_coverage_report "bionic-backend-python3.6": docker: @@ -153,7 +154,6 @@ jobs: - *save_cache_package_json - *save_cache_requirements - *run_backend_tests - - *upload_coverage_report workflows: version: 2