Skip to content

Commit da7d64b

Browse files
committed
Chore: Fix software tests
1 parent 6e7ef06 commit da7d64b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_schema.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1+
from unittest import skipIf
2+
13
import sqlalchemy as sa
24

5+
from sqlalchemy_cratedb.sa_version import SA_1_4, SA_VERSION
36
from tests.conftest import TESTDRIVE_DATA_SCHEMA
47

58

9+
@skipIf(SA_VERSION < SA_1_4, "Does not work correctly on SQLAlchemy 1.3")
610
def test_correct_schema(cratedb_service):
711
"""
812
Tests that the correct schema is being picked up.

0 commit comments

Comments
 (0)