Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/integration/esgf/test_search_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from pathlib import Path

import pytest
import requests
import yaml
from pyesgf.search.results import FileResult

Expand Down Expand Up @@ -128,6 +129,7 @@ def test_mock_search(variable, mocker):
]


@pytest.mark.xfail(raises=requests.exceptions.HTTPError, run=True)
def test_real_search():
"""Test a real search for a single file."""
variable = {
Expand Down
2 changes: 2 additions & 0 deletions tests/integration/test_recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import iris
import pytest
import requests
import yaml
from nested_lookup import get_occurrence_of_value, nested_update
from PIL import Image
Expand Down Expand Up @@ -1054,6 +1055,7 @@ def test_update_timerange_no_files_online(config_user):
esmvalcore._recipe._update_timerange(variable, config_user)


@pytest.mark.xfail(raises=requests.exceptions.HTTPError, run=True)
def test_update_timerange_no_files_offline(config_user):
variable = {
'alias': 'CMIP6',
Expand Down