-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
74 lines (56 loc) · 1.07 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
[tool:pytest]
addopts =
-v
--cov=josie
--cov-report xml:cov.xml
--cov-report term
--doctest-modules
--mypy
--benchmark-autosave
filterwarnings =
error::DeprecationWarning
norecursedirs =
build
docs
examples
vendor
.ropeproject
python_functions =
test_*
bench_*
markers =
bench: Mark a test as a benchmark test
[mypy]
check_untyped_defs = True
[mypy-conf]
ignore_errors = True
[mypy-docs.*]
ignore_errors = True
[mypy-tests.*]
ignore_errors = True
[mypy-aenum]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-matplotlib]
ignore_missing_imports = True
[mypy-meshio.*]
ignore_missing_imports = True
[mypy-nbconvert.*]
ignore_missing_imports = True
[mypy-numpy]
ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[coverage:report]
exclude_lines =
pragma: no cover
raise NotImplementedError
[flake8]
max-line-length = 88
extend-ignore = E203
per-file-ignores =
# imported but unused
__init__.py: F401