-
-
Notifications
You must be signed in to change notification settings - Fork 719
/
setup.cfg
54 lines (46 loc) · 1.44 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
[flake8]
# References:
# https://flake8.readthedocs.io/en/latest/user/configuration.html
# https://flake8.readthedocs.io/en/latest/user/error-codes.html
# Aligned with black https://github.com/psf/black/blob/main/.flake8
extend-ignore = E203, E266, E501
# Note: there cannot be spaces after comma's here
exclude = __init__.py,versioneer.py,distributed/_concurrent_futures_thread.py
ignore =
E26, # Comments
E4, # Import formatting
E731, # Assigning lambda expression
W503, # line break before binary operator
per-file-ignores =
**/tests/*:
# local variable is assigned to but never used
F841,
# Ambiguous variable name
E741,
max-line-length = 120
[isort]
sections = FUTURE,STDLIB,THIRDPARTY,DISTRIBUTED,FIRSTPARTY,LOCALFOLDER
profile = black
skip_gitignore = true
force_to_top = true
default_section = THIRDPARTY
known_first_party = distributed
known_distributed = dask
[versioneer]
VCS = git
style = pep440
versionfile_source = distributed/_version.py
versionfile_build = distributed/_version.py
tag_prefix =
parentdir_prefix = distributed-
[tool:pytest]
addopts = -v -rsxfE --durations=20
filterwarnings =
error:Since distributed.*:PendingDeprecationWarning
minversion = 4
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
avoid_ci: marks tests as flaky on CI on all OSs
ipython: marks tests as exercising IPython
timeout_method = thread
timeout = 300