Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
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
7 changes: 0 additions & 7 deletions tests/unit/test__signing.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@

_SERVICE_ACCOUNT_JSON = _read_local_json("url_signer_v4_test_account.json")
_CONFORMANCE_TESTS = _read_local_json("url_signer_v4_test_data.json")["signingV4Tests"]
_CLIENT_TESTS = [test for test in _CONFORMANCE_TESTS if "bucket" not in test]
_BUCKET_TESTS = [
test for test in _CONFORMANCE_TESTS if "bucket" in test and not test.get("object")
]
Expand Down Expand Up @@ -808,12 +807,6 @@ def _run_conformance_test(
assert url == test_data["expectedUrl"]


@pytest.mark.parametrize("test_data", _CLIENT_TESTS)
@pytest.mark.skip(reason="Bucketless URLs not yet supported")
def test_conformance_client(test_data):
pass # pragma: NO COVER


@pytest.mark.parametrize("test_data", _BUCKET_TESTS)
def test_conformance_bucket(test_data):
global _API_ACCESS_ENDPOINT
Expand Down