summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-11-17 13:17:18 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2012-11-17 13:17:18 -0500
commit8d85a3c4e5ac731c8fa80b5258c0024c4bddf819 (patch)
tree67e78b459604b46015ad3d62e7551b9f1b9e2600
parent790024f5a3d4d5b03d440777da56a8446bf359d1 (diff)
downloadsqlalchemy-8d85a3c4e5ac731c8fa80b5258c0024c4bddf819.tar.gz
sybase doesn't support microseconds, surprise, and after that we should have all the sybase dialect tests passing
-rw-r--r--test/requirements.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/requirements.py b/test/requirements.py
index d1ee55e7d..1cc7b058d 100644
--- a/test/requirements.py
+++ b/test/requirements.py
@@ -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):