-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpytest.ini
More file actions
25 lines (25 loc) · 1.36 KB
/
pytest.ini
File metadata and controls
25 lines (25 loc) · 1.36 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
[pytest]
addopts =
--strict-markers
--strict-config
-ra
testpaths = tests
markers =
slow: Mark slow tests to ignore them unless they are requested
integration: Tests to determine if independent units of code work together. Typically carried out after significant changes.
example: Tests that run complete examples using external tools (CosmoSIS, NumCosmo, Cobaya)
precision_sensitive: Tests that are sensitive to the numerical precision used in calculations.
filterwarnings =
ignore::DeprecationWarning:pkg_resources.*:
ignore::DeprecationWarning:cobaya.*:
ignore:The FITS format without the 'sacc_ordering' column is deprecated. Assuming data rows are in the correct order as it was before version 1.0.:UserWarning
ignore:Unknown data_type value supernova_distance_mu:UserWarning
ignore:Unknown data_type value misc:UserWarning
ignore:No bandpower windows associated with these data:UserWarning
ignore:.*SwigPyPacked.*:DeprecationWarning
ignore:.*SwigPyObject.*:DeprecationWarning
ignore:.*swigvarlink.*:DeprecationWarning
ignore:.*`row_stack` alias is deprecated.*:DeprecationWarning:fastpt.*
ignore:.*`trapz` is deprecated.*:DeprecationWarning:fastpt.*
ignore:.*Empty index selected.*:UserWarning:sacc.*
ignore:.*Conversion of an array with ndim > 0 to a scalar is deprecated.*:DeprecationWarning:scipy.*