From: Mike Bayer Date: Mon, 12 Nov 2012 21:36:20 +0000 (-0500) Subject: oracle doesnt support TIME or microseconds X-Git-Tag: rel_0_8_0b2~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b65736fdf65eeb08e724884f1f549c36acff6568;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git oracle doesnt support TIME or microseconds --- diff --git a/test/requirements.py b/test/requirements.py index 149733559d..07b2afb2a7 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -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):