summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/test/noseplugin.py
Commit message (Collapse)AuthorAgeFilesLines
* - the NoseSQLAlchemyPlugin has been moved to aMike Bayer2010-10-171-162/+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-1/+1
| | | | | | | - 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
* - orm: Removed a lot of logging that nobody really cares about,Mike Bayer2010-02-281-2/+0
| | | | | | | | | | | | logging that remains will respond to live changes in the log level. No significant overhead is added. [ticket:1719] - engine: Opened up logging a bit such that isEnabledFor() is called more often, so that changes to the log level for engine/pool will be reflected on next connect. This adds a small amount of method call overhead. It's negligible and will make life a lot easier for all those situations when logging just happens to be configured after create_engine() is called. [ticket:1719]
* clean up some skips, added skip for sqlite + python2Mike Bayer2010-02-211-0/+3
|
* arrange imports, cleanupPhilip Jenvey2010-01-221-12/+12
|
* - added a refresh logger step to the nose plugin so that SQLA class loggers ↵Mike Bayer2010-01-031-2/+4
| | | | | | get correct state from nose cmdline - fix mapper logging [ticket:1620]
* merge 0.6 series to trunk.Mike Bayer2009-08-061-20/+23
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+156
See README.unittests for information on how to run the tests. [ticket:970]