-
-
Notifications
You must be signed in to change notification settings - Fork 323
/
Copy pathsetup.cfg
51 lines (45 loc) · 994 Bytes
/
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
[bdist_wheel]
universal=1
[mypy]
ignore_missing_imports = True
warn_unused_configs = True
warn_redundant_casts = True
warn_unused_ignores = True
[flake8]
ignore = E203, E266, E501, W503, F811, N802, N806
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9,N,ROH
exclude =
**/node_modules/*
.eggs/*
.tox/*
# -- flake8-tidy-imports --
ban-relative-imports = parents
[tool:pytest]
testpaths = tests
xfail_strict = True
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
python_files = assert_*.py test_*.py
[coverage:report]
fail_under = 100
show_missing = True
skip_covered = True
sort = Name
exclude_lines =
pragma: no cover
\.\.\.
raise NotImplementedError
omit =
src/idom/__main__.py
src/idom/core/_fixed_jsonpatch.py
[build_sphinx]
all-files = true
source-dir = docs/source
build-dir = docs/build
[pydocstyle]
inherit = false
match = .*\.py
convention = google
add_ignore = D100,D101,D102,D103,D104,D105,D107,D412,D415