forked from bashtage/arch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
95 lines (83 loc) · 2.79 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[metadata]
description-file = README.md
license_file = LICENSE.md
[flake8]
# Leave at 99 for now
max-line-length = 99
ignore = E203,W503,BLK100
[versioneer]
VCS = git
style = pep440
versionfile_source = arch/_version.py
versionfile_build = arch/_version.py
tag_prefix = v
parentdir_prefix = arch-
[tool:pytest]
minversion = 3.06
testpaths = arch
addopts = --strict
filterwarnings =
ignore:`formatargspec`:DeprecationWarning:statsmodels
ignore:Using or importing:DeprecationWarning
ignore:Session._key_changed is deprecated:DeprecationWarning
error:Support for multi-dimensional:DeprecationWarning
error:Mutating unit root tests is deprecated:FutureWarning
error:invalid value encountered in cos:RuntimeWarning
error:invalid value encountered in log:RuntimeWarning
error:divide by zero encountered in double_scalars:RuntimeWarning
error:Lag selection has changed:DeprecationWarning
error:More than 20 figures have been opened:RuntimeWarning:
error:invalid value encountered in sqrt:RuntimeWarning:
error:Inequality constraints incompatible::
error:Parameters are not consistent with a::
error:overflow encountered in double_scalars:RuntimeWarning:
error:overflow encountered in multiply:RuntimeWarning:
ignore:The --strict option is deprecated:pytest.PytestDeprecationWarning
error:The default for reindex:FutureWarning:
error:overflow encountered in square:RuntimeWarning
error:Values in x were outside bounds:RuntimeWarning:
error:The random_state property is deprecated:FutureWarning
error:random_state is deprecated:FutureWarning
error:seed is deprecated:FutureWarning
error:get_state is deprecated:FutureWarning
markers =
slow: mark a test as slow
[isort]
sections=FUTURE,COMPAT,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
known_first_party=arch
known_third_party=Cython,numpy,matplotlib,pandas,patsy,pytest,statsmodels,seaborn
known_compat=arch.compat.*,setuptools,setuptools.*
combine_as_imports=True
force_sort_within_sections=True
force_to_top=True
profile=black
[mypy]
plugins = numpy.typing.mypy_plugin
ignore_missing_imports=True
no_implicit_optional=True
strict_equality=True
disallow_untyped_defs=True
disallow_incomplete_defs=True
show_error_context=True
[mypy-arch.conftest]
check_untyped_defs=False
disallow_untyped_defs=False
[mypy-arch._version]
check_untyped_defs=False
disallow_untyped_defs=False
[mypy-arch.vendor.*]
check_untyped_defs=False
disallow_untyped_defs=False
disallow_incomplete_defs=False
[mypy-arch.tests.*]
check_untyped_defs=False
disallow_untyped_defs=False
disallow_incomplete_defs=False
[mypy-versioneer]
check_untyped_defs=False
disallow_untyped_defs=False
disallow_incomplete_defs=False
[mypy-unitroot.critical_values.simulation.*]
check_untyped_defs=False
disallow_untyped_defs=False
disallow_incomplete_defs=False