From 0567523270fdf0f166c8fbfa6a58c09c1cd4a767 Mon Sep 17 00:00:00 2001 From: Fernando Perez Date: Sun, 24 Aug 2008 00:01:59 -0700 Subject: [PATCH] Include testing plugin for installation. --- setupbase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setupbase.py b/setupbase.py index 6d387dc4a..228aceba3 100644 --- a/setupbase.py +++ b/setupbase.py @@ -115,6 +115,7 @@ def find_packages(): add_package(packages, 'kernel', config=True, tests=True, scripts=True) add_package(packages, 'kernel.core', config=True, tests=True) add_package(packages, 'testing', tests=True) + add_package(packages, 'testing.plugin', tests=False) add_package(packages, 'tools', tests=True) add_package(packages, 'UserConfig') return packages