From c45afb757833cfa87c50e5cb41ffbd10e2c36592 Mon Sep 17 00:00:00 2001
From: Todd Gamblin <tgamblin@llnl.gov>
Date: Wed, 3 Jul 2019 17:11:07 -0700
Subject: [PATCH] coverage: remove sub-reports; only show project/patch on PRs
 (#11926)

- There's too much information on our PRs, and the Travis test results
  (which are arguably more important than coverage) get buried in
  coverage information

- Remove coverage sub-categories, as you can browse codecov's file view
  to see roughly the same thing

- show only project/patch on GitHub PRs.
---
 .codecov.yml | 22 +---------------------
 1 file changed, 1 insertion(+), 21 deletions(-)

diff --git a/.codecov.yml b/.codecov.yml
index 93ce22ee7f..042cc86e9c 100644
--- a/.codecov.yml
+++ b/.codecov.yml
@@ -4,28 +4,8 @@ coverage:
   range: 60...90
   status:
     project:
-      default: true
-      llnl:
+      default:
         threshold: 0.5
-        paths:
-          - lib/spack/llnl
-      commands:
-        threshold: 0.5
-        paths:
-          - lib/spack/spack/cmd
-      build_systems:
-        threshold: 0.5
-        paths:
-          - lib/spack/spack/build_systems
-      modules:
-        threshold: 0.5
-        paths:
-          - lib/spack/spack/modules
-      core:
-        threshold: 0.5
-        paths:
-          - "!lib/spack/llnl"
-          - "!lib/spack/spack/cmd"
 
 ignore:
   - lib/spack/spack/test/.*
-- 
GitLab