From e5eac13db392f851f15e014a1c20debb22da89b2 Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Wed, 6 Jul 2005 03:46:16 +0000 Subject: Added ``develop`` command to ``setuptools``-based packages. This command installs an ``.egg-link`` pointing to the package's source directory, and script wrappers that ``execfile()`` the source versions of the package's scripts. This lets you put your development checkout(s) on sys.path without having to actually install them. (To uninstall the link, use use ``setup.py develop --uninstall``.) --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041080 --- setuptools/command/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setuptools/command/test.py') diff --git a/setuptools/command/test.py b/setuptools/command/test.py index 37aeac68..2b0d9484 100644 --- a/setuptools/command/test.py +++ b/setuptools/command/test.py @@ -4,9 +4,9 @@ import sys class test(Command): - """Command to run unit tests after installation""" + """Command to run unit tests after in-place build""" - description = "run unit tests after installation" + description = "run unit tests after in-place build" user_options = [ ('test-module=','m', "Run 'test_suite' in specified module"), -- cgit v1.2.3