From: Sebastián Ramírez Date: Sat, 30 May 2020 17:05:41 +0000 (+0200) Subject: ✅ Require SQLAlchemy 1.3 in test for type conversion with JSON X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F698%2Fhead;p=thirdparty%2Fsqlalchemy%2Falembic.git ✅ Require SQLAlchemy 1.3 in test for type conversion with JSON --- diff --git a/tests/test_batch.py b/tests/test_batch.py index 5205d852..6b2fe23c 100644 --- a/tests/test_batch.py +++ b/tests/test_batch.py @@ -989,6 +989,7 @@ class CopyFromTest(TestBase): self.op = Operations(context) return context + @config.requirements.sqlalchemy_13 def test_change_type(self): context = self._fixture() self.table.append_column(Column("toj", Text))