diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-18 20:12:24 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-18 20:12:24 -0500 |
commit | e15fa0342d2ac83414c563abd8fd478251d4d35f (patch) | |
tree | fca318bb796d82f470ddcfc3456d1edc1c03053c /test/dialect/test_postgresql.py | |
parent | 7439a1c8afadf4bcf05b9557adf93b5d700050a3 (diff) | |
download | sqlalchemy-e15fa0342d2ac83414c563abd8fd478251d4d35f.tar.gz |
skip on 2.4
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r-- | test/dialect/test_postgresql.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index f3eb91ef2..150dacf18 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -1889,6 +1889,7 @@ class UUIDTest(TestBase): __only_on__ = 'postgresql' + @testing.requires.python25 @testing.fails_on('postgresql+pg8000', 'No support for UUID type') def test_uuid_string(self): import uuid @@ -1900,6 +1901,7 @@ class UUIDTest(TestBase): str(uuid.uuid4()) ) + @testing.requires.python25 @testing.fails_on('postgresql+pg8000', 'No support for UUID type') def test_uuid_uuid(self): import uuid |