@@ -100,21 +100,24 @@ addopts = [
100
100
]
101
101
102
102
filterwarnings =[
103
- " error" ,
104
- # Raised by arviz when the model_builder class adds non-standard group names to InferenceData
105
- " ignore::UserWarning:arviz.data.inference_data" ,
103
+ " error" ,
104
+ # Raised by arviz when the model_builder class adds non-standard group names to InferenceData
105
+ " ignore::UserWarning:arviz.data.inference_data" ,
106
106
107
- # bool8, find_common_type, cumproduct, and product had deprecation warnings added in numpy 1.25
108
- ' ignore:.*(\b(pkg_resources\.declare_namespace|np\.bool8|np\.find_common_type|cumproduct|product)\b).*:DeprecationWarning' ,
107
+ # bool8, find_common_type, cumproduct, and product had deprecation warnings added in numpy 1.25
108
+ ' ignore:.*(\b(pkg_resources\.declare_namespace|np\.bool8|np\.find_common_type|cumproduct|product)\b).*:DeprecationWarning' ,
109
109
110
- # JAX issues an over-eager warning if os.fork() is called when the JAX module is loaded, even if JAX isn't being used
111
- ' ignore:os\.fork\(\) was called\.:RuntimeWarning' ,
110
+ # JAX issues an over-eager warning if os.fork() is called when the JAX module is loaded, even if JAX isn't being used
111
+ ' ignore:os\.fork\(\) was called\.:RuntimeWarning' ,
112
112
113
- # Warning coming from blackjax
114
- ' ignore:jax\.tree_map is deprecated:DeprecationWarning' ,
113
+ # Warning coming from blackjax
114
+ ' ignore:jax\.tree_map is deprecated:DeprecationWarning' ,
115
115
116
- # PyMC uses numpy.core functions, which emits an warning as of numpy>2.0
117
- ' ignore:numpy\.core\.numeric is deprecated:DeprecationWarning' ,
116
+ # PyMC uses numpy.core functions, which emits an warning as of numpy>2.0
117
+ ' ignore:numpy\.core\.numeric is deprecated:DeprecationWarning' ,
118
+
119
+ # Silence warning emitted by pytensor when BLAS is not available
120
+ " ignore:Found Intel OpenMP \\ ('libiomp'\\ ) and LLVM OpenMP \\ ('libomp'\\ ):RuntimeWarning"
118
121
]
119
122
120
123
[tool .coverage .report ]
0 commit comments