21
21
from tests .conftest import SortedBaggage
22
22
23
23
24
- @pytest .mark .forked
25
24
def test_get_current_span_current_scope_with_span (sentry_init ):
26
25
sentry_init ()
27
26
@@ -31,7 +30,6 @@ def test_get_current_span_current_scope_with_span(sentry_init):
31
30
assert get_current_span () == new_span
32
31
33
32
34
- @pytest .mark .forked
35
33
def test_traceparent_with_tracing_enabled (sentry_init ):
36
34
sentry_init (traces_sample_rate = 1.0 )
37
35
@@ -43,7 +41,6 @@ def test_traceparent_with_tracing_enabled(sentry_init):
43
41
assert get_traceparent () == expected_traceparent
44
42
45
43
46
- @pytest .mark .forked
47
44
def test_traceparent_with_tracing_disabled (sentry_init ):
48
45
sentry_init ()
49
46
@@ -55,7 +52,6 @@ def test_traceparent_with_tracing_disabled(sentry_init):
55
52
assert get_traceparent () == expected_traceparent
56
53
57
54
58
- @pytest .mark .forked
59
55
def test_baggage_with_tracing_disabled (sentry_init ):
60
56
sentry_init (release = "1.0.0" , environment = "dev" )
61
57
propagation_context = get_isolation_scope ()._propagation_context
@@ -67,7 +63,6 @@ def test_baggage_with_tracing_disabled(sentry_init):
67
63
assert get_baggage () == SortedBaggage (expected_baggage )
68
64
69
65
70
- @pytest .mark .forked
71
66
def test_baggage_with_tracing_enabled (sentry_init ):
72
67
sentry_init (traces_sample_rate = 1.0 , release = "1.0.0" , environment = "dev" )
73
68
with mock .patch ("sentry_sdk.tracing_utils.Random.uniform" , return_value = 0.111111 ):
@@ -76,7 +71,6 @@ def test_baggage_with_tracing_enabled(sentry_init):
76
71
assert get_baggage () == SortedBaggage (expected_baggage )
77
72
78
73
79
- @pytest .mark .forked
80
74
def test_continue_trace (sentry_init ):
81
75
sentry_init (traces_sample_rate = 1.0 )
82
76
@@ -102,7 +96,6 @@ def test_continue_trace(sentry_init):
102
96
}
103
97
104
98
105
- @pytest .mark .forked
106
99
def test_is_initialized ():
107
100
assert not is_initialized ()
108
101
@@ -111,7 +104,6 @@ def test_is_initialized():
111
104
assert is_initialized ()
112
105
113
106
114
- @pytest .mark .forked
115
107
def test_get_client ():
116
108
client = get_client ()
117
109
assert client is not None
0 commit comments