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 3848c3a commit c378dd3Copy full SHA for c378dd3
tests/test_schema.py
@@ -1,8 +1,12 @@
1
+from unittest import skipIf
2
+
3
import sqlalchemy as sa
4
5
+from sqlalchemy_cratedb.sa_version import SA_1_4, SA_VERSION
6
from tests.conftest import TESTDRIVE_DATA_SCHEMA
7
8
9
+@skipIf(SA_VERSION < SA_1_4, "Does not work correctly on SQLAlchemy 1.3")
10
def test_correct_schema(cratedb_service):
11
"""
12
Tests that the correct schema is being picked up.
0 commit comments