We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06cbba0 commit 5e1c75dCopy full SHA for 5e1c75d
tests/test_utils.py
@@ -11,6 +11,7 @@
11
import collections
12
import json
13
import os
14
+import sys
15
from netrc import netrc
16
from unittest import mock
17
@@ -49,6 +50,7 @@ def test_get_netrc_auth_with_no_matching_url():
49
50
51
52
@pytest.mark.asyncio
53
+@pytest.mark.skipif(sys.version_info < (3, 8), reason="requires python3.8 or higher")
54
@mock.patch("python_inspector.utils_pypi.CACHE.get")
55
async def test_fetch_links(mock_get):
56
file_name = test_env.get_test_loc("psycopg2.html")
0 commit comments