File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ deps =
384384 # Quart
385385 quart: quart-auth
386386 quart: pytest-asyncio
387- quart: quart-flask-patch
387+ quart-{v0.19,latest} : quart-flask-patch
388388 quart-v0.16: blinker<1.6
389389 quart-v0.16: jinja2<3.1.0
390390 quart-v0.16: Werkzeug<2.1.0
Original file line number Diff line number Diff line change 1+ import importlib
12import json
23import threading
34from unittest import mock
@@ -73,6 +74,10 @@ def integration_enabled_params(request):
7374
7475@pytest .mark .asyncio
7576@pytest .mark .forked
77+ @pytest .mark .skipif (
78+ not importlib .util .find_spec ("quart_flask_patch" ),
79+ reason = "requires quart_flask_patch" ,
80+ )
7681async def test_quart_flask_patch (sentry_init , capture_events , reset_integrations ):
7782 # This testcase is forked because `import quart_flask_patch` needs to run
7883 # before anything else Quart-related is imported (since it monkeypatches
Original file line number Diff line number Diff line change @@ -501,7 +501,7 @@ deps =
501501 # Quart
502502 quart: quart-auth
503503 quart: pytest-asyncio
504- quart: quart-flask-patch
504+ quart-{v0.19,latest} : quart-flask-patch
505505 quart-v0.16: blinker<1.6
506506 quart-v0.16: jinja2<3.1.0
507507 quart-v0.16: Werkzeug<2.1.0
You can’t perform that action at this time.
0 commit comments