diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-28 17:50:12 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-28 17:50:12 -0400 |
| commit | d1c2b7aff8470f5566c61de7dc2f69bca969dac5 (patch) | |
| tree | aab905f62bde2f7b263fb0f0b83eeef3b6b77748 /test/engine | |
| parent | 7d6c1c4a95596d5d83d9187d823f88fdc46f35b6 (diff) | |
| download | sqlalchemy-d1c2b7aff8470f5566c61de7dc2f69bca969dac5.tar.gz | |
adjust this test which passes on some psycopg2s, fails on others, and we dont have a good
testing decorator to check this
Diffstat (limited to 'test/engine')
| -rw-r--r-- | test/engine/test_execute.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py index 900a3c8ee..43c476915 100644 --- a/test/engine/test_execute.py +++ b/test/engine/test_execute.py @@ -241,8 +241,8 @@ class ExecuteTest(fixtures.TestBase): def test_stmt_exception_pickleable_no_dbapi(self): self._test_stmt_exception_pickleable(Exception("hello world")) - @testing.fails_on("postgresql+psycopg2", - "Packages the cursor in the exception") + @testing.crashes("postgresql+psycopg2", + "Older versions dont support cursor pickling, newer ones do") @testing.fails_on("mysql+oursql", "Exception doesn't come back exactly the same from pickle") @testing.fails_on("oracle+cx_oracle", |
