Skip to content

[Lint] Run ruff check -fix and format on main branch#2784

Open
tovaz92 wants to merge 11 commits intomainfrom
ruff-format-main
Open

[Lint] Run ruff check -fix and format on main branch#2784
tovaz92 wants to merge 11 commits intomainfrom
ruff-format-main

Conversation

@tovaz92
Copy link
Collaborator

@tovaz92 tovaz92 commented Mar 20, 2026

The first step towards the integration of the changes from ruff, is to run check -fix and format on the main.

Link also to: #2738

  • Changelog is updated.

@tovaz92 tovaz92 self-assigned this Mar 20, 2026
@tovaz92 tovaz92 added the run tests Set this up to let test run label Mar 20, 2026
@codecov
Copy link

codecov bot commented Mar 20, 2026

❌ 45 Tests Failed:

Tests completed Failed Passed Skipped
508 45 463 1
View the top 1 failed test(s) by shortest run time
tests/test_gsv.py::TestGsv::test_reader_polytope_mn5@dask_operations
Stack Traces | 300s run time
self = <test_gsv.TestGsv object at 0x7f501c612210>

    def test_reader_polytope_mn5(self) -> None:
        """
        Reading from mn5 databridge using polytope
        """
        reader = Reader(
            catalog="climatedt-o25.1",
            model="IFS-NEMO",
            exp="historical-1990",
            source="hourly-hpz7-atm2d",
            startdate="19900101T0000",
            enddate="19910101T0025",
            loglevel="debug",
            engine="polytope",
            areas=False,
        )
>       data = reader.retrieve(var="2t")
               ^^^^^^^^^^^^^^^^^^^^^^^^^

tests/test_gsv.py:322: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.../core/reader/reader.py:439: in retrieve
    data = self.reader_fdb(self.esmcat, loadvar, startdate, enddate, dask=True, level=level)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.../core/reader/reader.py:1051: in reader_fdb
    ).to_dask()
      ^^^^^^^^^
.../core/gsv/intake_gsv.py:737: in to_dask
    self._load_metadata()
.../aqua/lib/python3.12.../intake/source/base.py:283: in _load_metadata
    self._schema = self._get_schema()
                   ^^^^^^^^^^^^^^^^^^
.../core/gsv/intake_gsv.py:530: in _get_schema
    self._ds = self._get_partition(0, var=self._var, first=True, onelevel=self.onelevel)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.../core/gsv/intake_gsv.py:693: in _get_partition
    dataset = gsv.request_data(
.../aqua/lib/python3.12....../site-packages/gsv/retriever.py:530: in request_data
    self.datareader = self._retrieve(request)
                      ^^^^^^^^^^^^^^^^^^^^^^^
.../aqua/lib/python3.12....../site-packages/gsv/retriever.py:228: in _retrieve
    return self.engine.retrieve(mars_request)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.../aqua/lib/python3.12.../gsv/engines/polytope_engine.py:46: in retrieve
    self.polytope_client.retrieve(
.../aqua/lib/python3.12.../polytope/api/helpers.py:197: in decorated
    return fun(self, *args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
.../aqua/lib/python3.12.../polytope/api/helpers.py:229: in decorated
    return method(self, *args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.../aqua/lib/python3.12.../polytope/api/helpers.py:197: in decorated
    return fun(self, *args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
.../aqua/lib/python3.12.../polytope/api/Client.py:202: in retrieve
    return self.request_manager.retrieve(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.../aqua/lib/python3.12.../polytope/api/RequestManager.py:354: in retrieve
    response, response_messages = helpers.try_request(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

method = 'post', situation = 'trying to submit a retrieval request'
expected = [200, 202, 204], logger = <Logger polytope.api.Client.WDBOSF (DEBUG)>
stream = True, skip_tls = False, session = None
kwargs = {'headers': {'Authorization': 'Bearer eyJhbGciOiJIUzUxMiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICJhOGRkMTE5Yy1kYjg0LTQ1ZGItODJi...'verb': 'retrieve'}, 'url': 'https://polytope.mn5.apps.dte.destination-earth.eu:.../v1/requests/destination-earth'}
url = 'https://polytope.mn5.apps.dte.destination-earth.eu:.../v1/requests/destination-earth'
verify = True
request_content = {'headers': {'Authorization': 'Bearer eyJhbGciOiJIUzUxMiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICJhOGRkMTE5Yy1kYjg0LTQ1ZGItODJi...param:\n- '167'\nrealization: 1\nresolution: standard\nstream: clte\ntime:\n- '0000'\ntype: fc\n", 'verb': 'retrieve'}}
retriable = <function try_request.<locals>.retriable at 0x7f501388d080>
attempt = 4, max_attempts = 10, sleep = 120

    def try_request(method, situation, expected, logger, stream=False, skip_tls=False, session=None, **kwargs):
        url = kwargs.get("url", None)
        verify = not skip_tls
        request_content = {"headers": kwargs.get("headers", None), "json": kwargs.get("json", None)}
    
        def retriable(code):
            if code in [
                requests.codes.internal_server_error,
                requests.codes.bad_gateway,
                requests.codes.service_unavailable,
                requests.codes.gateway_timeout,
                requests.codes.too_many_requests,
                requests.codes.request_timeout,
            ]:
                return True
            return False
    
        attempt = 1
        max_attempts = 10
        sleep = 120
        success = False
        while attempt <= max_attempts:
            try:
                if session is None:
                    method_to_call = getattr(requests, method)
                else:
                    method_to_call = getattr(session, method)
    
                logger.debug("Polytope client attempting HTTP " + method.upper() + " " + url + "\n" + str(request_content))
                response = method_to_call(**kwargs, verify=verify, stream=stream)
            except requests.exceptions.ConnectionError as e:
                response = None
                message = "Recovering from connection error."
                message += "\n" + str(e)
                logger.warning(message)
    
            if response is not None:
                if retriable(response.status_code):
                    message = (
                        "Recovering from HTTP error ("
                        + str(response.status_code)
                        + ": "
                        + requests.status_codes._codes[response.status_code][0]
                        + ")"
                    )
                    logger.warning(message)
                else:
                    success = True
                    break
    
            logger.info("Attempt " + str(attempt) + " of " + str(max_attempts))
            logger.info("Next retry in " + str(sleep) + " seconds")
            attempt = attempt + 1
>           time.sleep(sleep)
E           Failed: Timeout (>300.0s) from pytest-timeout.

.../aqua/lib/python3.12.../polytope/api/helpers.py:591: Failed
View the full list of 44 ❄️ flaky test(s)
tests/test_timstat.py::TestTimmean::test_timmax_daily[long-2t]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmax_daily[long-ttr]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmax_daily[long400-2t]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmax_daily[long400-ttr]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_exclude_incomplete[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_exclude_incomplete[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_exclude_incomplete_tcoords[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_exclude_incomplete_tcoords[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_invalid_frequency[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_invalid_frequency[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_monthly[long-ttr]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_monthly[long400-ttr]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_monthly_center_time[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_monthly_center_time[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_pandas_accessor[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_pandas_accessor[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_time_bounds[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_time_bounds[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_yearly_center_time[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmean_yearly_center_time[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmin_yearly_exclude_incomplete[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timmin_yearly_exclude_incomplete[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_compare[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_compare[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_first_last[long400]@dask_operations

Flake rate in main: 16.67% (Passed 5 times, Failed 1 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_first_last[long]@dask_operations

Flake rate in main: 16.67% (Passed 5 times, Failed 1 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_first_last_no_freq[long-first]@dask_operations

Flake rate in main: 16.67% (Passed 5 times, Failed 1 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_first_last_no_freq[long-last]@dask_operations

Flake rate in main: 16.67% (Passed 5 times, Failed 1 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_first_last_no_freq[long400-first]@dask_operations

Flake rate in main: 16.67% (Passed 5 times, Failed 1 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_first_last_no_freq[long400-last]@dask_operations

Flake rate in main: 16.67% (Passed 5 times, Failed 1 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_histogram[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_histogram[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_monthly_exclude_incomplete[long-2t]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_monthly_exclude_incomplete[long-ttr]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_monthly_exclude_incomplete[long400-2t]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstat_monthly_exclude_incomplete[long400-ttr]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstd_allperiod[long-2t]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstd_allperiod[long400-2t]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstd_daily_center_time[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstd_daily_center_time[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstd_error[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timstd_error[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timsum[long400]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long400_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15
tests/test_timstat.py::TestTimmean::test_timsum[long]@dask_operations

Flake rate in main: 8.57% (Passed 32 times, Failed 3 times)

Stack Traces | 0.001s run time
file .../AQUA/tests/test_timstat.py, line 46
      def test_timsum(self, reader, data):
file .../AQUA/tests/test_timstat.py, line 15
  @pytest.fixture(scope="module")
  def reader(request, source_name):
E       fixture 'ifs_tco79_long_fixFalse_reader' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, capteesys, cov, data, data_2t, data_ttr, doctest_namespace, era5_hpz3_monthly_data, era5_hpz3_monthly_r100_data, era5_hpz3_monthly_r100_reader, era5_hpz3_monthly_reader, fesom_test_pi_original_2d_data, fesom_test_pi_original_2d_r200_fixfalse_data, fesom_test_pi_original_2d_r200_fixfalse_reader, fesom_test_pi_original_2d_reader, hydra_restore_singletons, hydra_sweep_runner, hydra_task_runner, icon_test_healpix_short_data, icon_test_healpix_short_reader, icon_test_r2b0_short_data, icon_test_r2b0_short_reader, ifs_tco79_long400_fixfalse_data, ifs_tco79_long400_fixfalse_reader, ifs_tco79_long_data, ifs_tco79_long_fixfalse_data, ifs_tco79_long_fixfalse_reader, ifs_tco79_long_reader, ifs_tco79_short_data, ifs_tco79_short_data_2t, ifs_tco79_short_r100_data, ifs_tco79_short_r100_reader, ifs_tco79_short_r200_data, ifs_tco79_short_r200_reader, ifs_tco79_short_reader, monkeypatch, nemo_test_e_orca1_long_2d_data, nemo_test_e_orca1_long_2d_reader, nemo_test_e_orca1_short_3d_data, nemo_test_e_orca1_short_3d_reader, no_cover, pytestconfig, reader, record_property, record_testsuite_property, record_xml_attribute, recwarn, source_name, subtests, testrun_uid, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory, worker_id
>       use 'pytest --fixtures [testpath]' for help on them.

.../AQUA/tests/test_timstat.py:15

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

@tovaz92
Copy link
Collaborator Author

tovaz92 commented Mar 21, 2026

Running: ruff format . --no-cache and ruff check . --fix --no-cache will not raise any new change/error.
The only ignores in the pyproject.toml used are:

ignore = [
    "N816", # Allow var name such as: data_DJF
    "E741", # Allow ambiguous names such as: l, d, etc.
]

N803 fo cases such as:

N803 Argument name `nemo_test_eORCA1_short_3d_reader` should be lowercase
  --> tests/test_fldstat.py:51:20
   |
50 | @pytest.fixture(scope="module")
51 | def reader_nemo_3d(nemo_test_eORCA1_short_3d_reader)

has been manually fixed, but we can discuss if it is something we want to include in the ignores.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

run tests Set this up to let test run

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant