Skip to content

Commit 3cbc73c

Browse files
committed
fix: Python runtime constraints from Google Cloud tests
Signed-off-by: Paulo Vital <paulo.vital@ibm.com>
1 parent 79f9360 commit 3cbc73c

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

tests/clients/test_google-cloud-storage.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# (c) Copyright Instana Inc. 2020
33

44

5-
import sys
65
from typing import Generator
76
import json
87
import pytest
@@ -541,10 +540,6 @@ def test_objects_attrs(self, mock_requests: Mock) -> None:
541540
assert gcs_span.data["gcs"]["bucket"] == "test bucket"
542541
assert gcs_span.data["gcs"]["object"] == "test object"
543542

544-
@pytest.mark.skipif(
545-
sys.version_info >= (3, 14),
546-
reason='Avoiding "Fatal Python error: Segmentation fault"',
547-
)
548543
@patch("requests.Session.request")
549544
def test_objects_get(self, mock_requests: Mock) -> None:
550545
mock_requests.return_value = self._mock_response(
@@ -1084,10 +1079,6 @@ def test_execute_with_instana_is_tracing_off(self) -> None:
10841079
response = client.list_buckets()
10851080
assert isinstance(response.client, storage.Client)
10861081

1087-
@pytest.mark.skipif(
1088-
sys.version_info >= (3, 14),
1089-
reason='Avoiding "Fatal Python error: Segmentation fault"',
1090-
)
10911082
@patch("requests.Session.request")
10921083
def test_download_with_instana_is_tracing_off(self, mock_requests: Mock) -> None:
10931084
mock_requests.return_value = self._mock_response(

0 commit comments

Comments
 (0)