File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 3838from openeo .rest ._testing import OPENEO_BACKEND , DummyBackend , build_capabilities
3939from openeo .util import rfc3339
4040
41+ # Module level markers
42+ pytestmark = [
43+ # Fail on all warnings (except our own deprecation warnings)
44+ pytest .mark .filterwarnings ("error" ),
45+ pytest .mark .filterwarnings ("default:.*`output_file` argument is deprecated.*:DeprecationWarning" ),
46+ ]
47+
4148
4249@pytest .fixture
4350def con (requests_mock ) -> openeo .Connection :
@@ -77,8 +84,6 @@ def sleep_mock():
7784 yield sleep
7885
7986
80- @pytest .mark .filterwarnings ("default:.*`output_file` argument is deprecated.*:DeprecationWarning" )
81- @pytest .mark .filterwarnings ("error" )
8287class TestMultiBackendJobManager :
8388
8489 @pytest .fixture
You can’t perform that action at this time.
0 commit comments