summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/test/config.py
Commit message (Collapse)AuthorAgeFilesLines
* - the NoseSQLAlchemyPlugin has been moved to aMike Bayer2010-10-171-173/+0
| | | | | | | | | | new package "sqlalchemy_nose" which installs along with "sqlalchemy". This so that the "nosetests" script works as always but also allows the --with-coverage option to turn on coverage before SQLAlchemy modules are imported, allowing coverage to work correctly. - added some new ignores
* - beef up the --reversetop test option to embed RandomSet throughout the ORMMike Bayer2010-04-151-10/+3
| | | | | | | - with m2m we have to go back to the previous approach of having both sides of the DP fire off, tracking each pair of objects. history may not be consistently present in one side or the other - this revealed a whole lot of issues with self-referential m2m, which are fixed
* - Added preliminary support for Oracle's WITH_UNICODEMike Bayer2010-03-121-0/+1
| | | | | | mode. At the very least this establishes initial support for cx_Oracle with Python 3. [ticket:1670]
* merge 0.6 series to trunk.Mike Bayer2009-08-061-24/+26
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+177
See README.unittests for information on how to run the tests. [ticket:970]