From c36bbf518c850f2c2f46bd03c81801b593ab0d9f Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 25 Oct 2012 14:37:39 -0400 Subject: [PATCH] test_config: tell Nose that foreach_test_wrapper() is not a test Signed-off-by: W. Trevor King --- test/test_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_config.py b/test/test_config.py index c2bd9f2..b461922 100644 --- a/test/test_config.py +++ b/test/test_config.py @@ -39,6 +39,7 @@ config_filename = "test_config" def foreach_test_wrapper(key, name, lst): lst[key] = name return 0 +foreach_test_wrapper.__test__ = False class ConfigTest(utils.RepoTestCase):