forked from modin-project/modin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (68 loc) · 2.03 KB
/
setup.cfg
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[versioneer]
VCS = git
style = pep440
versionfile_source = modin/_version.py
versionfile_build = modin/_version.py
tag_prefix =
parentdir_prefix = modin-
[tool:pytest]
addopts = --cov-config=setup.cfg --cov=modin --cov-append --cov-report= -m "not exclude_by_default"
xfail_strict=true
markers =
exclude_in_sanity
exclude_by_default
filterwarnings =
error:.*defaulting to pandas.*:UserWarning
[isort]
profile = black
[flake8]
max-line-length = 88
ignore = E203, E266, E501, W503
select = B,C,E,F,W,T,B9,NIC
per-file-ignores =
modin/pandas/__init__.py:E402,F401
stress_tests/kaggle/*:E402
modin/experimental/pandas/__init__.py:E402
modin/_version.py:T201
modin/tests/*:E402
[coverage:run]
source =
# modin sources
modin/*
omit =
# These are not covered by any test because it is an experimental API
modin/sql/*
modin/experimental/sql*
# This is not used yet
modin/pandas/index/*
# Skip tests
modin/tests/*
# Plotting is not tested
modin/pandas/plotting.py
# Skip CUDF tests
modin/storage_formats/cudf/*
modin/core/execution/ray/implementations/cudf_on_ray/*
modin/core/execution/ray/implementations/cudf_on_ray/frame/*
modin/core/execution/ray/implementations/cudf_on_ray/series/*
# Skip CLI part
modin/__main__.py
# Skip third-party stuff
modin/_version.py
parallel = True
# The use of this feature is one of the recommendations of codecov if the
# tests are run in different environments (for example, on different operating
# systems): https://coverage.readthedocs.io/en/stable/config.html#run-relative-files
relative_files = true
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
raise ImportError
assert
pass