diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-18 00:54:00 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-18 00:54:00 -0400 |
commit | 515811eb582cc6d44513e19af66bf8376fd541bd (patch) | |
tree | 4f602df9be8e5cf8e2636c06dd0c160f70c7cffd /test/lib/profiling.py | |
parent | d2ed308da38af01e23d9f4085f6b8f973994b29a (diff) | |
download | sqlalchemy-515811eb582cc6d44513e19af66bf8376fd541bd.tar.gz |
- fix the labeled column with column_expression() issue, finishes [ticket:1534]
- epic documentation sweep for new operator system, making ORM links consistent
and complete, full documentation and examples for type/SQL expression feature
- type_coerce() explicitly accepts BindParamClause objects
- change UserDefinedType to coerce the other side to itself by default as this
is much more likely what's desired
- make coerce_compared_type() fully public on all types
- have profiling run the test no matter what so that the test_zoomarks don't fail
when callcounts are missing
Diffstat (limited to 'test/lib/profiling.py')
-rw-r--r-- | test/lib/profiling.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lib/profiling.py b/test/lib/profiling.py index 6ca28d462..e02c4ce46 100644 --- a/test/lib/profiling.py +++ b/test/lib/profiling.py @@ -229,6 +229,9 @@ def function_call_count(variance=0.05): raise SkipTest("cProfile is not installed") if not _profile_stats.has_stats() and not _profile_stats.write: + # run the function anyway, to support dependent tests + # (not a great idea but we have these in test_zoomark) + fn(*args, **kw) raise SkipTest("No profiling stats available on this " "platform for this function. Run tests with " "--write-profiles to add statistics to %s for " |