diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-18 12:35:25 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-09-18 12:35:25 -0400 |
commit | f46c4028bc9fc3eaa9ba537beb289a6caba215ec (patch) | |
tree | 5a2c9716f1ce6086c20ce54ddb8ae53c6e24e362 /lib/sqlalchemy/test | |
parent | 611fb77186d7379a4ab8378326cbbb380c6e8cd6 (diff) | |
download | sqlalchemy-f46c4028bc9fc3eaa9ba537beb289a6caba215ec.tar.gz |
add oursql to has lastrowid
Diffstat (limited to 'lib/sqlalchemy/test')
-rw-r--r-- | lib/sqlalchemy/test/requires.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/test/requires.py b/lib/sqlalchemy/test/requires.py index dc0b29228..a9b84e85d 100644 --- a/lib/sqlalchemy/test/requires.py +++ b/lib/sqlalchemy/test/requires.py @@ -250,7 +250,7 @@ def sane_rowcount(fn): def dbapi_lastrowid(fn): return _chain_decorators_on( fn, - fails_on_everything_except('mysql+mysqldb', 'sqlite+pysqlite') + fails_on_everything_except('mysql+mysqldb', 'mysql+oursql', 'sqlite+pysqlite') ) def sane_multi_rowcount(fn): |