summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/engines.py
Commit message (Collapse)AuthorAgeFilesLines
* - add copyright to source files missing itMike Bayer2013-10-261-1/+7
|
* improve the close handling here so that we don't double-close a connection;Mike Bayer2013-06-281-3/+5
| | | | we log this now so it apparently happens a bunch
* - fdb is now official, [ticket:2504]Mike Bayer2013-06-031-4/+4
| | | | | - restore the rollback cleanup handler, pg8000 is mostly obsolete as a dialect and the firebird drivers need it
* a pass where we try to squash down as many list()/keys() combinationsMike Bayer2013-05-261-22/+20
| | | | as possible
* test_execute up for sqlite, pg, oursql, mysql 2.7 + 3.3Mike Bayer2013-05-041-1/+1
|
* - the raw 2to3 runMike Bayer2013-04-271-21/+22
| | | | - went through examples/ and cleaned out excess list() calls
* mymysql dialectHajime Nakagami2013-03-011-1/+1
|
* just a pep8 pass of lib/sqlalchemy/testing/Diana Clarke2012-11-191-4/+27
|
* - add back __engine_options__Mike Bayer2012-10-041-0/+1
| | | | | - break test_insert tests into explicitly get_lastrowid() vs. implicit_returning tests, fix up requirements to split them out
* - more tests, move some tests out of test_reflection, test_queryMike Bayer2012-09-271-1/+1
|
* trying different approaches to test layout. in this one, the testing modulesMike Bayer2012-09-271-0/+429
become an externally usable package but still remains within the main sqlalchemy parent package. in this system, we use kind of an ugly hack to get the noseplugin imported outside of the "sqlalchemy" package, while still making it available within sqlalchemy for usage by third party libraries.