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.
1 parent 05e1624 commit fe52027Copy full SHA for fe52027
tests/test_server/test_common/test_multiview.py
@@ -1,6 +1,7 @@
1
import pytest
2
3
import idom
4
+from idom.server import fastapi as idom_fastapi
5
from idom.server import flask as idom_flask
6
from idom.server import sanic as idom_sanic
7
from idom.server import tornado as idom_tornado
@@ -16,6 +17,7 @@
16
17
idom_sanic.PerClientStateServer,
18
idom_flask.PerClientStateServer,
19
idom_tornado.PerClientStateServer,
20
+ idom_fastapi.PerClientStateServer,
21
],
22
ids=lambda cls: f"{cls.__module__}.{cls.__name__}",
23
)
0 commit comments