File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1057,6 +1057,9 @@ def test_keep_existing_coltype_no_orig(self):
1057
1057
autoload = True , keep_existing = True )
1058
1058
assert isinstance (users .c .name .type , Unicode )
1059
1059
1060
+ @testing .skip_if (
1061
+ lambda : testing .db .dialect .requires_name_normalize ,
1062
+ "test depends on lowercase as case insensitive" )
1060
1063
def test_keep_existing_quote_no_orig (self ):
1061
1064
meta2 = self ._notexisting_fixture ()
1062
1065
users = Table ('users' , meta2 , quote = True ,
@@ -1120,6 +1123,9 @@ def test_extend_existing_coltype_no_orig(self):
1120
1123
autoload = True , extend_existing = True )
1121
1124
assert isinstance (users .c .name .type , Unicode )
1122
1125
1126
+ @testing .skip_if (
1127
+ lambda : testing .db .dialect .requires_name_normalize ,
1128
+ "test depends on lowercase as case insensitive" )
1123
1129
def test_extend_existing_quote_no_orig (self ):
1124
1130
meta2 = self ._notexisting_fixture ()
1125
1131
users = Table ('users' , meta2 , quote = True ,
You can’t perform that action at this time.
0 commit comments