summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/test/profiling.py
Commit message (Collapse)AuthorAgeFilesLines
* - move sqlalchemy.test to test.libMike Bayer2010-11-151-221/+0
|
* first step of [ticket:1949], remove the setuptools aspectMike Bayer2010-11-151-1/+0
| | | | of the plugin, move it to test/bootstrap
* - the NoseSQLAlchemyPlugin has been moved to aMike Bayer2010-10-171-1/+1
| | | | | | | | | | 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
* - Added an optional C extension to speed up the sql layer byGaƫtan de Menten2010-02-131-1/+8
| | | | | | | | | | | | | | | reimplementing the highest impact functions. The actual speedups will depend heavily on your DBAPI and the mix of datatypes used in your tables, and can vary from a 50% improvement to more than 200%. It also provides a modest (~20%) indirect improvement to ORM speed for large queries. Note that it is *not* built/installed by default. See README for installation instructions. - The most common result processors conversion function were moved to the new "processors" module. Dialect authors are encouraged to use those functions whenever they correspond to their needs instead of implementing custom ones.
* merge 0.6 series to trunk.Mike Bayer2009-08-061-6/+14
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+207
See README.unittests for information on how to run the tests. [ticket:970]