File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 32
32
33
33
_SERVICE_ACCOUNT_JSON = _read_local_json ("url_signer_v4_test_account.json" )
34
34
_CONFORMANCE_TESTS = _read_local_json ("url_signer_v4_test_data.json" )["signingV4Tests" ]
35
- _CLIENT_TESTS = [test for test in _CONFORMANCE_TESTS if "bucket" not in test ]
36
35
_BUCKET_TESTS = [
37
36
test for test in _CONFORMANCE_TESTS if "bucket" in test and not test .get ("object" )
38
37
]
@@ -808,12 +807,6 @@ def _run_conformance_test(
808
807
assert url == test_data ["expectedUrl" ]
809
808
810
809
811
- @pytest .mark .parametrize ("test_data" , _CLIENT_TESTS )
812
- @pytest .mark .skip (reason = "Bucketless URLs not yet supported" )
813
- def test_conformance_client (test_data ):
814
- pass # pragma: NO COVER
815
-
816
-
817
810
@pytest .mark .parametrize ("test_data" , _BUCKET_TESTS )
818
811
def test_conformance_bucket (test_data ):
819
812
global _API_ACCESS_ENDPOINT
You can’t perform that action at this time.
0 commit comments