]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
sybase doesn't support microseconds, surprise, and after that we should have all...
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 17 Nov 2012 18:17:18 +0000 (13:17 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 17 Nov 2012 18:17:18 +0000 (13:17 -0500)
test/requirements.py

index d1ee55e7de459ddbe07d92e620bc61c5a21ee3fd..1cc7b058d8ed736f3ecd30e9c31ea0b4c27c1985 100644 (file)
@@ -399,7 +399,8 @@ class DefaultRequirements(SuiteRequirements):
         """target dialect supports representation of Python
         datetime.datetime() with microsecond objects."""
 
-        return skip_if(['mssql', 'mysql', 'firebird', '+zxjdbc', 'oracle'])
+        return skip_if(['mssql', 'mysql', 'firebird', '+zxjdbc',
+                    'oracle', 'sybase'])
 
     @property
     def datetime_historic(self):
@@ -434,7 +435,8 @@ class DefaultRequirements(SuiteRequirements):
         """target dialect supports representation of Python
         datetime.time() with microsecond objects."""
 
-        return skip_if(['mssql', 'mysql', 'firebird', '+zxjdbc', 'oracle'])
+        return skip_if(['mssql', 'mysql', 'firebird', '+zxjdbc',
+                    'oracle', 'sybase'])
 
     @property
     def python2(self):