forked from sunpy/sunpy-soar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
40 lines (40 loc) · 1.46 KB
/
pytest.ini
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
[pytest]
minversion = 7.0
testpaths =
sunpy_soar
docs
norecursedirs =
docs/_build
docs/generated
sunpy_soar/_dev
sunpy_soar/extern
doctest_plus = enabled
doctest_optionflags =
NORMALIZE_WHITESPACE
FLOAT_CMP
ELLIPSIS
text_file_format = rst
addopts =
--doctest-rst
-p no:unraisableexception
-p no:threadexception
filterwarnings =
# Turn all warnings into errors so they do not pass silently.
error
# Do not fail on pytest config issues (i.e. missing plugins) but do show them
always::pytest.PytestConfigWarning
# A list of warnings to ignore follows. If you add to this list, you MUST
# add a comment or ideally a link to an issue that explains why the warning
# is being ignored
# https://github.com/pandas-dev/pandas/issues/54466
ignore:\nPyarrow will become a required dependency of pandas in the next major release of pandas:DeprecationWarning
# See https://github.com/mvantellingen/python-zeep/issues/956
ignore:defusedxml.lxml is no longer supported:DeprecationWarning
ignore:numpy.ndarray size changed
# This is coming from astropy
ignore:The distutils package is deprecated
# Zeep relies on deprecated cgi in Python 3.11
ignore:'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning:zeep.utils
# Not sure what these are
ignore:unclosed <socket.socket.*:ResourceWarning
ignore:unclosed event loop <_UnixSelectorEventLoop.*:ResourceWarning