From b97f6e296a3366d22c3c259e70e321799b1a14d2 Mon Sep 17 00:00:00 2001 From: Max Moroz Date: Thu, 19 Nov 2020 16:07:35 -0800 Subject: [PATCH] [infra] Allow coverage for Go project on GCB (#2817, #2714). (#4668) --- infra/build/functions/build_and_run_coverage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/build/functions/build_and_run_coverage.py b/infra/build/functions/build_and_run_coverage.py index dcb2f1a02..c1b693c28 100644 --- a/infra/build/functions/build_and_run_coverage.py +++ b/infra/build/functions/build_and_run_coverage.py @@ -48,7 +48,7 @@ LATEST_REPORT_INFO_CONTENT_TYPE = 'application/json' UPLOAD_URL_FORMAT = 'gs://' + COVERAGE_BUCKET_NAME + '/{project}/{type}/{date}' # Languages from project.yaml that have code coverage support. -LANGUAGES_WITH_COVERAGE_SUPPORT = ['c', 'c++'] +LANGUAGES_WITH_COVERAGE_SUPPORT = ['c', 'c++', 'go'] def usage():