Skip to content
Merged
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
23 changes: 2 additions & 21 deletions tests/mock_vws/test_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import datetime
import io
import json
import sys
import textwrap
import time
import uuid
Expand Down Expand Up @@ -1395,16 +1394,7 @@ class TestMaximumImageFileSize:
"""

@staticmethod
@pytest.mark.skipif(
sys.version_info > (3, 9),
reason=(
"There is a bug in urllib3: "
"https://github.com/urllib3/urllib3/issues/2733"
),
)
def test_png(
cloud_reco_client: CloudRecoService,
) -> None: # pragma: no cover
def test_png(cloud_reco_client: CloudRecoService) -> None:
"""
According to
https://developer.vuforia.com/library/web-api/vuforia-query-web-api.
Expand Down Expand Up @@ -1474,16 +1464,7 @@ def test_png(
assert response.text == _NGINX_REQUEST_ENTITY_TOO_LARGE_ERROR

@staticmethod
@pytest.mark.skipif(
sys.version_info > (3, 9),
reason=(
"There is a bug in urllib3: "
"https://github.com/urllib3/urllib3/issues/2733"
),
)
def test_jpeg(
cloud_reco_client: CloudRecoService,
) -> None: # pragma: no cover
def test_jpeg(cloud_reco_client: CloudRecoService) -> None:
"""
According to
https://developer.vuforia.com/library/web-api/vuforia-query-web-api.
Expand Down
Loading