-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
33 lines (27 loc) · 837 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
[yapf]
arithmetic_precedence_indication = true
column_limit = 129
[isort]
line_length = 129
wrap_length = 129
balanced_wrapping = true
skip=.venv,output
multi_line_output = 2
known_future_library = interactive_utils, interactive.setup
[tool:pytest]
addopts = --doctest-modules --cov-report=xml --cov-report=term --no-cov-on-fail --ignore-glob=*_i.py --ignore-glob=interactive/*.py --ignore=.venv
norecursedirs = .git .venv .vscode testdata output
filterwarnings =
ignore:the imp module is deprecated:DeprecationWarning
markers =
uses_copyright_material: Test may have to be removed as it depends on copyrighted material to run
[mypy]
python_version = 3.7
[mypy-mpmath]
ignore_missing_imports = true
[coverage:run]
omit=
.venv/*
[coverage:report]
exclude_lines =
def __repr__(self):