We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_rdrh003_refresh_jwt
1 parent 17c824d commit fdfd058Copy full SHA for fdfd058
tests/integration/renderer/test_request_hooks.py
@@ -2,6 +2,7 @@
2
import functools
3
import flask
4
import pytest
5
+from tests.utils import test_async
6
7
from flaky import flaky
8
@@ -203,6 +204,9 @@ def update_output(value):
203
204
@flaky(max_runs=3)
205
@pytest.mark.parametrize("expiry_code", [401, 400])
206
def test_rdrh003_refresh_jwt(expiry_code, dash_duo):
207
+ if test_async():
208
+ return # if async, bypass this test as this ends up wrapping async funcs and results in 3 failed requests
209
+
210
app = Dash(__name__)
211
212
app.index_string = """<!DOCTYPE html>
0 commit comments