diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-11-12 16:36:20 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-11-12 16:36:20 -0500 |
commit | b65736fdf65eeb08e724884f1f549c36acff6568 (patch) | |
tree | 55c0a430d7c0f11f9cd608bc72d24948d5762ab9 | |
parent | d2a99b2043e976fd673f7ce4119bfe776a4310a9 (diff) | |
download | sqlalchemy-b65736fdf65eeb08e724884f1f549c36acff6568.tar.gz |
oracle doesnt support TIME or microseconds
-rw-r--r-- | test/requirements.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/requirements.py b/test/requirements.py index 149733559..07b2afb2a 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): |