forked from pyro-ppl/numpyro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
30 lines (26 loc) · 826 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
[flake8]
max-line-length = 120
exclude = docs/src, build, dist, .ipynb_checkpoints
[isort]
line_length = 120
not_skip = __init__.py
skip_glob = .ipynb_checkpoints
known_first_party = numpyro, test
known_third_party = opt_einsum
known_jax = jax
sections = FUTURE, STDLIB, THIRDPARTY, JAX, FIRSTPARTY, LOCALFOLDER
force_sort_within_sections = true
multi_line_output = 3
skip=docs
[tool:pytest]
filterwarnings = error
ignore:numpy.ufunc size changed,:RuntimeWarning
ignore:Using a non-tuple sequence:FutureWarning
ignore:numpy.linalg support is experimental:UserWarning
ignore:scipy.linalg support is experimental:UserWarning
once:No GPU:UserWarning
once::DeprecationWarning
doctest_optionflags = ELLIPSIS NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL
[yapf]
based_on_style = google
column_limit = 120