Skip to content

Commit eb614ed

Browse files
committed
attempt
1 parent 1374dcf commit eb614ed

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

tests/conftest.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -642,9 +642,7 @@ def run_in_thread(self):
642642
def uvicorn_server(request):
643643
app = request.param()
644644

645-
config = uvicorn.Config(
646-
app, host="127.0.0.1", port=5000, log_level="info", loop="asyncio"
647-
)
645+
config = uvicorn.Config(app, host="127.0.0.1", port=5000, log_level="info")
648646
server = UvicornServer(config=config)
649647

650648
with server.run_in_thread():

tests/integrations/starlette/test_starlette.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,6 @@ def test_transaction_name_in_middleware(
10851085
)
10861086

10871087

1088-
@pytest.mark.forked
10891088
@pytest.mark.parametrize("uvicorn_server", [starlette_app_factory], indirect=True)
10901089
def test_with_uvicorn(sentry_init, capture_envelopes, uvicorn_server):
10911090
# Sanity check that the app works with uvicorn which does its own ASGI 2/3

0 commit comments

Comments
 (0)