summaryrefslogtreecommitdiff
path: root/test/testlib/compat.py
Commit message (Collapse)AuthorAgeFilesLines
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-19/+0
| | | | | See README.unittests for information on how to run the tests. [ticket:970]
* Pulled callable into testlib because path fixup is not available at the ↵Michael Trier2008-12-211-1/+7
| | | | point we need it.
* merged -r5299:5438 of py3k warnings branch. this fixes some sqlite py2.6 ↵Mike Bayer2008-12-181-2/+2
| | | | | | | | testing issues, and also addresses a significant chunk of py3k deprecations. It's mainly expicit __hash__ methods. Additionally, most usage of sets/dicts to store columns uses util-based placeholder names.
* - Removed 2.3 set emulations/enhancements.Jason Kirtland2008-07-151-88/+1
| | | | (sets.Set-based collections & DB-API returns still work.)
* r4695 merged to trunk; trunk now becomes 0.5.Mike Bayer2008-05-091-5/+13
| | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4
* - Experimental: prefer cProfile over hotspot for 2.5+Jason Kirtland2008-04-031-1/+15
| | | | | - The latest skirmish in the battle against zoomark and sanity: 3rd party code is factored out in the function call count canary tests
* - 2.3 fixup part three: 100% on postgres, mysqlJason Kirtland2008-01-221-2/+9
|
* - 2.3 fixup, part two: 100% passing for sqliteJason Kirtland2008-01-211-4/+53
| | | | | | | | | - added 2.4-style binops to util.Set on 2.3 - OrderedSets pickle on 2.3 - more lib/sqlalchemy set vs Set corrections - fixed InstrumentedSet.discard for 2.3 - set, sorted compatibility for test suite - added testing.fails_if decorator
* - Restored 2.3 compat. in lib/sqlalchemyJason Kirtland2008-01-191-0/+22
- Part one of test suite fixes to run on 2.3 Lots of failures still around sets; sets.Set differs from __builtin__.set particularly in the binops. We depend on set extensively now and may need to provide a corrected sets.Set subclass on 2.3.