-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathsetup.cfg
More file actions
29 lines (26 loc) · 827 Bytes
/
setup.cfg
File metadata and controls
29 lines (26 loc) · 827 Bytes
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
[flake8]
exclude = .*/,*.egg,src/tmuxp/_compat.py,src/tmuxp/__*__.py,
select = E,W,F,N
max-line-length = 88
# Stuff we ignore thanks to black: https://github.com/ambv/black/issues/429
extend-ignore = E203,W503
[isort]
profile = black
combine_as_imports= true
default_section = THIRDPARTY
include_trailing_comma = true
multi_line_output = 3
known_pytest = pytest,py
known_first_party = libtmux,tmuxp
sections = FUTURE,STDLIB,PYTEST,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
line_length = 88
[tool:pytest]
filterwarnings =
ignore:distutils Version classes are deprecated. Use packaging.version instead.
ignore:The frontend.Option(Parser)? class.*:DeprecationWarning::
addopts = --reruns=0 --tb=short --no-header --showlocals --doctest-modules
doctest_optionflags = ELLIPSIS NORMALIZE_WHITESPACE
testpaths =
src/tmuxp
tests
docs