forked from dask/dask-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (41 loc) · 1 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
[flake8]
exclude = tests/data,docs,benchmarks,scripts,.tox,env,.eggs,build
max-line-length = 88
ignore =
# Assigning lambda expression
E731
# Ambiguous variable names
E741
# line break before binary operator
W503
# whitespace before :
E203
[isort]
known_first_party=dask_ml
known_third_party=sklearn,dask,distributed,dask_glm,pandas,coloredlogs,git,packaging.version,packaging,numpy,pytest,scipy,toolz,multipledispatch,numba,tornado
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
combine_as_imports=True
line_length=88
skip=
docs/source/conf.py
[coverage:run]
source=dask_ml
[mypy]
ignore_missing_imports=True
no_implicit_optional=True
check_untyped_defs=True
strict_equality=True
[mypy-dask_ml.metrics]
check_untyped_defs=False
[mypy-dask_ml.model_selection.*]
follow_imports=skip
[tool:pytest]
addopts = -rsx -v --durations=10 --color=yes
minversion = 3.2
xfail_strict = true
junit_family = xunit2
filterwarnings =
error:::dask_ml[.*]
error:::sklearn[.*]