From b65736fdf65eeb08e724884f1f549c36acff6568 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 12 Nov 2012 16:36:20 -0500 Subject: [PATCH] oracle doesnt support TIME or microseconds --- test/requirements.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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): -- 2.47.3