github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/.codecov.yml (about)

     1  codecov:
     2    require_ci_to_pass: false
     3    notify:
     4      after_n_builds: 1
     5      wait_for_ci: false
     6  
     7  coverage:
     8    status:
     9      patch: off
    10      project:
    11        default:
    12  #        target: 70
    13          threshold: 1%
    14          if_ci_failed: success
    15        docgen:
    16  #        target: 70
    17          threshold: 1%
    18          if_ci_failed: success
    19          paths:
    20            - tools/docgen
    21        readline:
    22  #        target: 70
    23          threshold: 1%
    24          if_ci_failed: success
    25          paths:
    26            - utils/readline
    27        wasmserver:
    28  #        target: 70
    29          threshold: 1%
    30          if_ci_failed: success
    31          paths:
    32            - utils/wasmserver
    33  
    34  ignore:
    35    - "vendor"                # not my project files
    36    - "builtins/import_build" # these should just be copies of import_src
    37    - "**/*_test.go"          # Go test files (you shouldn't test test files)
    38    - "**/*.mx"               # these are tested outside of codecov
    39    - "**/*.sh"               # these are just for bootstrapping development
    40    - "**/*.test"             # files generated for testing
    41    - "utils/docgen"          # this is a separate project for bootstrapping development
    42    - "utils/wasmserver"      # this is also a separate project for bootstrapping development