From: Mike Bayer Date: Thu, 6 Aug 2009 20:16:31 +0000 (+0000) Subject: disabled examples test pending necesary repairs X-Git-Tag: rel_0_5_6~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7638aa7f242c6ea3d743aa9100e32be2052546a6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git disabled examples test pending necesary repairs --- diff --git a/test/ex/test_examples.py b/test/ex/test_examples.py index 411c44a0b3..7724f90a47 100644 --- a/test/ex/test_examples.py +++ b/test/ex/test_examples.py @@ -40,7 +40,12 @@ def check_import(module): class ExamplesTest(TestBase): + # TODO: ensure examples are actually run regardless of + # check for "__main__", perhaps standardizing the format of all examples. + # ensure that examples with external dependencies are not run if those dependencies are + # not present (i.e. elementtree, postgis) def test_examples(self): - for module in find_modules(): - check_import.description = module - yield check_import, module + pass + #for module in find_modules(): + # check_import.description = module + # yield check_import, module