aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/helper.py
diff options
context:
space:
mode:
authorGravatar Catena cyber <35799796+catenacyber@users.noreply.github.com>2020-11-19 09:14:30 +0100
committerGravatar GitHub <noreply@github.com>2020-11-19 00:14:30 -0800
commit07ea81ba3e65b66467aefce2e844bba5881be691 (patch)
tree1c93ba3e42a1fe2e2f8e4ac0e72f14f7c628caff /infra/helper.py
parent43f768df012e4c0e52f8ae0a7171cd748ec3f000 (diff)
[infra] Add code coverage report generation for Go projects (#3142)
* Golang coverage report * Enables golang coverage report for gonids and go-dns * Generates summary for golang coverage reports * Performance profile for golang projects
Diffstat (limited to 'infra/helper.py')
-rwxr-xr-xinfra/helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/helper.py b/infra/helper.py
index 99d87112..d91239df 100755
--- a/infra/helper.py
+++ b/infra/helper.py
@@ -59,7 +59,7 @@ CORPUS_BACKUP_URL_FORMAT = (
PROJECT_LANGUAGE_REGEX = re.compile(r'\s*language\s*:\s*([^\s]+)')
# Languages from project.yaml that have code coverage support.
-LANGUAGES_WITH_COVERAGE_SUPPORT = ['c', 'c++']
+LANGUAGES_WITH_COVERAGE_SUPPORT = ['c', 'c++', 'go']
def main(): # pylint: disable=too-many-branches,too-many-return-statements,too-many-statements