|
13 | 13 | """
|
14 | 14 |
|
15 | 15 |
|
16 |
| -@pytest.mark.xfail("will be removed in 3.0") |
| 16 | +@pytest.mark.xfail(reason="will be removed in 3.0") |
17 | 17 | def test_configure_scope_sdk1(sentry_init, capture_events):
|
18 | 18 | """
|
19 | 19 | Mutate data in a `with configure_scope` block.
|
@@ -43,7 +43,7 @@ def test_configure_scope_sdk1(sentry_init, capture_events):
|
43 | 43 | assert event_z["tags"] == {"A": 1, "B1": 1, "B2": 1, "Z": 1}
|
44 | 44 |
|
45 | 45 |
|
46 |
| -@pytest.mark.xfail("will be removed in 3.0") |
| 46 | +@pytest.mark.xfail(reason="will be removed in 3.0") |
47 | 47 | def test_push_scope_sdk1(sentry_init, capture_events):
|
48 | 48 | """
|
49 | 49 | Mutate data in a `with push_scope` block
|
@@ -73,7 +73,7 @@ def test_push_scope_sdk1(sentry_init, capture_events):
|
73 | 73 | assert event_z["tags"] == {"A": 1, "Z": 1}
|
74 | 74 |
|
75 | 75 |
|
76 |
| -@pytest.mark.xfail("will be removed in 3.0") |
| 76 | +@pytest.mark.xfail(reason="will be removed in 3.0") |
77 | 77 | def test_with_hub_sdk1(sentry_init, capture_events):
|
78 | 78 | """
|
79 | 79 | Mutate data in a `with Hub:` block
|
@@ -103,7 +103,7 @@ def test_with_hub_sdk1(sentry_init, capture_events):
|
103 | 103 | assert event_z["tags"] == {"A": 1, "B1": 1, "B2": 1, "Z": 1}
|
104 | 104 |
|
105 | 105 |
|
106 |
| -@pytest.mark.xfail("will be removed in 3.0") |
| 106 | +@pytest.mark.xfail(reason="will be removed in 3.0") |
107 | 107 | def test_with_hub_configure_scope_sdk1(sentry_init, capture_events):
|
108 | 108 | """
|
109 | 109 | Mutate data in a `with Hub:` containing a `with configure_scope` block
|
@@ -147,7 +147,7 @@ def test_with_hub_configure_scope_sdk1(sentry_init, capture_events):
|
147 | 147 | }
|
148 | 148 |
|
149 | 149 |
|
150 |
| -@pytest.mark.xfail("will be removed in 3.0") |
| 150 | +@pytest.mark.xfail(reason="will be removed in 3.0") |
151 | 151 | def test_with_hub_push_scope_sdk1(sentry_init, capture_events):
|
152 | 152 | """
|
153 | 153 | Mutate data in a `with Hub:` containing a `with push_scope` block
|
@@ -183,7 +183,7 @@ def test_with_hub_push_scope_sdk1(sentry_init, capture_events):
|
183 | 183 | assert event_z["tags"] == {"A": 1, "B1": 1, "B5": 1, "Z": 1}
|
184 | 184 |
|
185 | 185 |
|
186 |
| -@pytest.mark.xfail("will be removed in 3.0") |
| 186 | +@pytest.mark.xfail(reason="will be removed in 3.0") |
187 | 187 | def test_with_cloned_hub_sdk1(sentry_init, capture_events):
|
188 | 188 | """
|
189 | 189 | Mutate data in a `with cloned Hub:` block
|
@@ -213,7 +213,7 @@ def test_with_cloned_hub_sdk1(sentry_init, capture_events):
|
213 | 213 | assert event_z["tags"] == {"A": 1, "Z": 1}
|
214 | 214 |
|
215 | 215 |
|
216 |
| -@pytest.mark.xfail("will be removed in 3.0") |
| 216 | +@pytest.mark.xfail(reason="will be removed in 3.0") |
217 | 217 | def test_with_cloned_hub_configure_scope_sdk1(sentry_init, capture_events):
|
218 | 218 | """
|
219 | 219 | Mutate data in a `with cloned Hub:` containing a `with configure_scope` block
|
@@ -249,7 +249,7 @@ def test_with_cloned_hub_configure_scope_sdk1(sentry_init, capture_events):
|
249 | 249 | assert event_z["tags"] == {"A": 1, "Z": 1}
|
250 | 250 |
|
251 | 251 |
|
252 |
| -@pytest.mark.xfail("will be removed in 3.0") |
| 252 | +@pytest.mark.xfail(reason="will be removed in 3.0") |
253 | 253 | def test_with_cloned_hub_push_scope_sdk1(sentry_init, capture_events):
|
254 | 254 | """
|
255 | 255 | Mutate data in a `with cloned Hub:` containing a `with push_scope` block
|
|
0 commit comments