diff options
author | Michael Trier <mtrier@gmail.com> | 2008-12-12 03:41:05 +0000 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-12-12 03:41:05 +0000 |
commit | 1d90146210b0919294a99468a916d4084fc14c7d (patch) | |
tree | 75bf422e326289f225adc399675d9a316486878a /test/engine/reconnect.py | |
parent | aaac4520d3a4d1b2b73403bedaeb67d9cf26409c (diff) | |
download | sqlalchemy-1d90146210b0919294a99468a916d4084fc14c7d.tar.gz |
Modified fails_on testing decorator to take a reason for the failure.
This should assist with helping to document the reasons for testing failures.
Currently unspecified failures are defaulted to 'FIXME: unknown'.
Diffstat (limited to 'test/engine/reconnect.py')
-rw-r--r-- | test/engine/reconnect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/engine/reconnect.py b/test/engine/reconnect.py index 936ea97e4..64d3fb794 100644 --- a/test/engine/reconnect.py +++ b/test/engine/reconnect.py @@ -315,7 +315,7 @@ class InvalidateDuringResultTest(TestBase): meta.drop_all() engine.dispose() - @testing.fails_on('mysql') + @testing.fails_on('mysql', 'FIXME: unknown') def test_invalidate_on_results(self): conn = engine.connect() |