From: Mike Bayer Date: Fri, 6 Oct 2017 20:31:09 +0000 (-0400) Subject: - more mariadb 10.2 tests that won't work X-Git-Tag: rel_0_9_6~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e03435581a0984b44813303948d6d756d9d3255;p=thirdparty%2Fsqlalchemy%2Falembic.git - more mariadb 10.2 tests that won't work Change-Id: I7484c653e5f90adb0b25cb74263c99d7bfec5be0 --- diff --git a/tests/test_batch.py b/tests/test_batch.py index 734fc869..27f0a8c2 100644 --- a/tests/test_batch.py +++ b/tests/test_batch.py @@ -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"