forked from TCDSolar/stixpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
49 lines (49 loc) · 1.65 KB
/
pytest.ini
File metadata and controls
49 lines (49 loc) · 1.65 KB
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
[pytest]
minversion = 7.0
testpaths =
"stixpy"
"docs"
norecursedirs =
".*"
".tox"
"build"
"docs/_build"
"docs/generated"
"*.egg-info"
"examples"
"stixpy/_dev"
".jupyter"
".history"
"tools"
doctest_plus = enabled
doctest_optionflags =
NORMALIZE_WHITESPACE
FLOAT_CMP
ELLIPSIS
text_file_format = rst
addopts =
--doctest-rst
-p no:unraisableexception
-p no:threadexception
remote_data_strict = True
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
ignore:defusedxml.lxml is no longer supported:DeprecationWarning
ignore:Matplotlib is currently using agg:UserWarning
ignore: Python 3.14 will, by default, filter extracted tar archives and reject:DeprecationWarning
ignore:Use `durations` instead:DeprecationWarning
ignore:unclosed event loop:ResourceWarning:
ignore:SAS solution not available using spacecraft pointing:UserWarning
ignore:No good SAS solution found for time range:UserWarning
ignore:Data has no positive values:UserWarning
ignore:Using \.data to access:UserWarning
ignore:FigureCanvasAgg is non-interactive:UserWarning
ignore:Invalid 'BLANK' keyword:astropy.io.fits.verify.VerifyWarning
ignore::pyparsing.warnings.PyparsingDeprecationWarning
ignore:Using 'generic' unit for NumPy timedelta:DeprecationWarning