summaryrefslogtreecommitdiff
path: root/.coveragerc
blob: 5b06d817ad008b16449151827d1a5e1eb6e645e7 (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
[run]
concurrency = multiprocessing
plugins = Cython.Coverage

omit =
  # Omit some internals
  */buildstream/_profile.py
  */buildstream/__main__.py
  */buildstream/_version.py
  # Omit generated code
  */buildstream/_protos/*
  */.eggs/*
  # Omit .tox directory
  */.tox/*
  # Omit a dynamically generated Cython file
  */stringsource

[report]
show_missing = True
precision = 2

[paths]
source =
    src/buildstream/
    buildstream/
    */site-packages/buildstream/