]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- more mariadb 10.2 tests that won't work
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 6 Oct 2017 20:31:09 +0000 (16:31 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 6 Oct 2017 20:31:09 +0000 (16:31 -0400)
Change-Id: I7484c653e5f90adb0b25cb74263c99d7bfec5be0

tests/test_batch.py

index 734fc869e81a376255827242fad7313289673e67..27f0a8c2f1c63f962b425c4202b6f8d04fe8d748 100644 (file)
@@ -1442,6 +1442,13 @@ class BatchRoundTripMySQLTest(BatchRoundTripTest):
     def test_rename_column_boolean(self):
         super(BatchRoundTripMySQLTest, self).test_rename_column_boolean()
 
+    @exclusions.fails_if(config.requirements._mariadb_102)
+    def test_change_type_boolean_to_int(self):
+        super(BatchRoundTripMySQLTest, self).test_change_type_boolean_to_int()
+
+    @exclusions.fails_if(config.requirements._mariadb_102)
+    def test_change_type_int_to_boolean(self):
+        super(BatchRoundTripMySQLTest, self).test_change_type_int_to_boolean()
 
 class BatchRoundTripPostgresqlTest(BatchRoundTripTest):
     __only_on__ = "postgresql"