forked from chainer/chainer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
80 lines (65 loc) · 2.66 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
[flake8]
exclude = .eggs,*.egg,build,caffe_pb2.py,caffe_pb3.py,docs,.git
# TODO(niboshi): Fix violating code and remove E241 and E226
ignore = E741,W503,W504,E241,E226
[pep8]
exclude = .eggs,*.egg,build,caffe_pb2.py,caffe_pb3.py,docs,.git
[tool:pytest]
filterwarnings= error::FutureWarning
ignore::FutureWarning:chainer\.utils\.experimental
error::DeprecationWarning
error::PendingDeprecationWarning
# NumPy<1.11
ignore:in the future np\.array_split will retain the shape of arrays with a zero size:FutureWarning:numpy\.lib\.shape_base
# importing old SciPy is warned because it tries to
# import nose via numpy.testing
ignore::DeprecationWarning:scipy\._lib\._numpy_compat
# importing stats from old SciPy is warned because it tries to
# import numpy.testing.decorators
ignore::DeprecationWarning:scipy\.stats\.morestats
# Theano 0.8 causes DeprecationWarnings. It is fixed in 0.9.
ignore::DeprecationWarning:theano\.configparser
# Theano 1.0.2 passes a deprecated argument to distutils during
# importing ``theano.gof`` module.
# Without this configuration, the DeprecationWarning would be
# treated as an exception, and therefore the import would fail,
# causing AttributeError in the subsequent uses of
# ``theano.gof``. (#4810)
ignore::DeprecationWarning:theano\.gof\.cmodule
# ``collections.MutableSequence`` in protobuf is warned by
# Python 3.7.
ignore:Using or importing the ABCs from 'collections':DeprecationWarning:google\.protobuf
# Importing abcs from ``collections`` in h5py is warned by
# Python 3.7.
ignore::DeprecationWarning:h5py\._hl\.base
testpaths = tests docs
python_files = test_*.py
python_classes = Test
python_functions = test
minversion = 2.9
addopts = --doctest-modules --doctest-glob='*.rst'
[mypy]
[mypy-filelock.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-cupy.*]
ignore_missing_imports = True
[mypy-cupyx.*]
ignore_missing_imports = True
[mypy-ideep4py.*]
ignore_missing_imports = True
[mypy-theano.*]
ignore_missing_imports = True
[mypy-google.protobuf.*]
ignore_missing_imports = True
[mypy-h5py.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-PIL.*]
ignore_missing_imports = True