Skip to content

Commit 9109420

Browse files
test(django): Remove pytest.mark.forked from ASGI Django tests
1 parent 5562971 commit 9109420

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

tests/integrations/django/asgi/test_asgi.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232

3333
@pytest.mark.parametrize("application", APPS)
3434
@pytest.mark.asyncio
35-
@pytest.mark.forked
3635
@pytest.mark.skipif(
3736
django.VERSION < (3, 0), reason="Django ASGI support shipped in 3.0"
3837
)
@@ -140,7 +139,6 @@ async def test_basic(
140139

141140
@pytest.mark.parametrize("application", APPS)
142141
@pytest.mark.asyncio
143-
@pytest.mark.forked
144142
@pytest.mark.skipif(
145143
django.VERSION < (3, 1), reason="async views have been introduced in Django 3.1"
146144
)
@@ -192,7 +190,6 @@ async def test_async_views(
192190
@pytest.mark.parametrize("endpoint", ["/sync/thread_ids", "/async/thread_ids"])
193191
@pytest.mark.parametrize("middleware_spans", [False, True])
194192
@pytest.mark.asyncio
195-
@pytest.mark.forked
196193
@pytest.mark.skipif(
197194
django.VERSION < (3, 1), reason="async views have been introduced in Django 3.1"
198195
)
@@ -269,7 +266,6 @@ async def test_active_thread_id(
269266

270267

271268
@pytest.mark.asyncio
272-
@pytest.mark.forked
273269
@pytest.mark.skipif(
274270
django.VERSION < (3, 1), reason="async views have been introduced in Django 3.1"
275271
)
@@ -312,7 +308,6 @@ async def test_async_views_concurrent_execution(sentry_init, settings):
312308

313309

314310
@pytest.mark.asyncio
315-
@pytest.mark.forked
316311
@pytest.mark.skipif(
317312
django.VERSION < (3, 1), reason="async views have been introduced in Django 3.1"
318313
)
@@ -359,7 +354,6 @@ async def test_async_middleware_that_is_function_concurrent_execution(
359354

360355

361356
@pytest.mark.asyncio
362-
@pytest.mark.forked
363357
@pytest.mark.skipif(
364358
django.VERSION < (3, 1), reason="async views have been introduced in Django 3.1"
365359
)
@@ -447,7 +441,6 @@ async def test_async_middleware_spans(
447441

448442

449443
@pytest.mark.asyncio
450-
@pytest.mark.forked
451444
@pytest.mark.skipif(
452445
django.VERSION < (3, 1), reason="async views have been introduced in Django 3.1"
453446
)
@@ -505,7 +498,6 @@ async def test_has_trace_if_performance_enabled(
505498

506499

507500
@pytest.mark.asyncio
508-
@pytest.mark.forked
509501
@pytest.mark.skipif(
510502
django.VERSION < (3, 1), reason="async views have been introduced in Django 3.1"
511503
)
@@ -556,7 +548,6 @@ async def test_has_trace_if_performance_disabled(
556548

557549

558550
@pytest.mark.asyncio
559-
@pytest.mark.forked
560551
@pytest.mark.skipif(
561552
django.VERSION < (3, 1), reason="async views have been introduced in Django 3.1"
562553
)
@@ -619,7 +610,6 @@ async def test_trace_from_headers_if_performance_enabled(
619610

620611

621612
@pytest.mark.asyncio
622-
@pytest.mark.forked
623613
@pytest.mark.skipif(
624614
django.VERSION < (3, 1), reason="async views have been introduced in Django 3.1"
625615
)

0 commit comments

Comments
 (0)