Skip to content

Commit 1130215

Browse files
committed
MAINT: temporarily skip buggy tests
1 parent bdb1857 commit 1130215

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

astroquery/tests/test_cache.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import requests
22
import os
3+
import pytest
34

45
from time import mktime
56
from datetime import datetime
@@ -15,6 +16,10 @@
1516
TEXT1 = "Penguin"
1617
TEXT2 = "Walrus"
1718

19+
pytest.skip(reason='request function mocking is buggy here, skipping tests until '
20+
'https://github.com/astropy/astroquery/issues/2632 is resolved',
21+
allow_module_level=True)
22+
1823

1924
def set_response(resp_text, resp_status=200):
2025
"""Function that allows us to set a specific mock response for cache testing"""

0 commit comments

Comments
 (0)