forked from mars-project/mars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.coveragerc
43 lines (42 loc) · 1.04 KB
/
.coveragerc
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[run]
branch = True
relative_files = True
cover_pylib = False
concurrency = multiprocessing,gevent
parallel = True
plugins = Cython.Coverage
include =
mars/*
omit =
mars/compat.py
mars/lib/functools32/*
mars/lib/futures/*
mars/lib/enum.py
mars/lib/six.py
mars/lib/gipc.pyx
mars/lib/nvutils.py
mars/lib/tblib/*
mars/lib/uhashring/*
mars/serialize/protos/*
mars/learn/contrib/xgboost/tracker.py
mars/learn/cluster/_k_means_fast.*
mars/learn/cluster/_k_means_elkan.pyx
mars/learn/cluster/_k_means_lloyd.pyx
mars/learn/utils/_cython_blas.*
mars/tensor/einsum/einsumfunc.py
*.html
*.pxd
*/tests/*
mars/dataframe/datasource/from_vineyard.py
mars/dataframe/datastore/to_vineyard.py
mars/tensor/datasource/from_vineyard.py
mars/tensor/datastore/to_vineyard.py
mars/worker/storage/vineyardhandler.py
mars/deploy/kubedl/*
[report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
return NotImplemented