summaryrefslogtreecommitdiff
path: root/.codecov.yml
blob: cb3ee230bbbd90316d0404dc69770e39b1c55e9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
codecov:
  ci:
    # we don't require appveyor or
    # circleCI to pass to report
    # coverage, which currently only
    # comes from a single Python 3.6 job
    # in Travis
    - !appveyor
    - !circle
  notify:
    # don't require all travis builds to pass;
    # as long as the coverage job succeeds it
    # can report the % coverage, even if another
    # job needs a restart for whatever reason
    - require_ci_to_pass: no
    # we should only require a single build before
    # reporting the % coverage because there's only
    # one coverage job in Travis
    - after_n_builds: 1
coverage:
  status:
    project:
      default:
        # Require 1% coverage, i.e., always succeed
        target: 1
comment: off

ignore:
  - "**/setup.py"