We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7c4fce commit 4b97938Copy full SHA for 4b97938
2 files changed
tests/mark.py
@@ -14,3 +14,4 @@ def override_panels(panels: t.List[str]) -> MarkDecorator:
14
15
16
skip_py37: MarkDecorator = pytest.mark.skipif(sys.version_info < (3, 8), reason="?")
17
+skip_py36: MarkDecorator = pytest.mark.skipif(sys.version_info < (3, 7), reason="?")
tests/panels/sqlalchemy/test_sqlalchemy.py
@@ -1,9 +1,10 @@
1
from fastapi import status
2
3
-from ...mark import override_panels
+from ...mark import override_panels, skip_py36
4
from ...testclient import TestClient
5
6
7
+@skip_py36
8
@override_panels(["debug_toolbar.panels.sqlalchemy.SQLAlchemyPanel"])
9
def test_sqlalchemy(client: TestClient) -> None:
10
store_id = client.get_store_id("/sql")
0 commit comments