]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
oracle doesnt support TIME or microseconds
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 12 Nov 2012 21:36:20 +0000 (16:36 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 12 Nov 2012 21:36:20 +0000 (16:36 -0500)
test/requirements.py

index 149733559d1eedbda14003cf0a1f17e8b46f6dac..07b2afb2a7ee0dac7fe9a05475bbbab82514011b 100644 (file)
@@ -387,7 +387,7 @@ class DefaultRequirements(SuiteRequirements):
         """target dialect supports representation of Python
         datetime.datetime() with microsecond objects."""
 
-        return skip_if(['mssql', 'mysql', 'firebird', '+zxjdbc'])
+        return skip_if(['mssql', 'mysql', 'firebird', '+zxjdbc', 'oracle'])
 
     @property
     def datetime_historic(self):
@@ -415,14 +415,14 @@ class DefaultRequirements(SuiteRequirements):
         """target dialect supports representation of Python
         datetime.time() objects."""
 
-        return exclusions.open()
+        return skip_if(['oracle'])
 
     @property
     def time_microseconds(self):
         """target dialect supports representation of Python
         datetime.time() with microsecond objects."""
 
-        return skip_if(['mssql', 'mysql', 'firebird', '+zxjdbc'])
+        return skip_if(['mssql', 'mysql', 'firebird', '+zxjdbc', 'oracle'])
 
     @property
     def python2(self):