We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e7ef06 commit da7d64bCopy full SHA for da7d64b
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