From 93179e9fbe45db8e69698234c6447253ae9f69aa Mon Sep 17 00:00:00 2001 From: Brian Granger Date: Sun, 17 Aug 2008 15:43:19 -0700 Subject: [PATCH] Added tests for the new get_ipython_dir and get_security_dir functions in genutils.py. Also added one for get_home_dir. --- setupbase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setupbase.py b/setupbase.py index 28d8017f3..cd7564452 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, 'tests') add_package(packages, 'testing.plugin', tests=False) add_package(packages, 'tools', tests=True) add_package(packages, 'UserConfig')