]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: use setup.cfg aliases to map "setup.py test" to "setup.py trial" and "setup...
authorZooko O'Whielacronx <zooko@zooko.com>
Tue, 20 Jan 2009 19:37:23 +0000 (12:37 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Tue, 20 Jan 2009 19:37:23 +0000 (12:37 -0700)
Thanks to dpeterson for the suggestion.

docs/install.html
setup.cfg

index 9e835dae68004c95e529ede4672418c15c1ddcd1..021eda9efba711cca62735149cd4944850ae13d6 100644 (file)
@@ -33,9 +33,9 @@
 
     <p>Unpack the zip file and cd into the top-level directory.</p>
 
-    <p>Run <cite>python setup.py build_tahoe</cite> to build and to install the <cite>tahoe</cite> executable into a subdirectory of the current directory named <cite>bin</cite>.</p>
+    <p>Run <cite>python setup.py build</cite> to install the <cite>tahoe</cite> executable into a subdirectory of the current directory named <cite>bin</cite>.</p>
 
-    <p>Run <cite>python setup.py trial</cite> to verify that it built correctly and passes all tests.</p>
+    <p>Optionally run <cite>python setup.py test</cite> to verify that it passes tests.</p>
 
     <p>Run <cite>bin/tahoe --version</cite> to verify that the executable tool runs and prints out the right version number.</p>
 
index 8ed55175f6a55dc5b64e97a2a87aeedd954a0134..53fb00cf1a54ad441b037392125a32e5f90e5933 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -27,3 +27,6 @@ find_links=misc/dependencies tahoe-deps ../tahoe-deps
 # http://sourceforge.net/project/showfiles.php?group_id=78018&package_id=79063
 # http://pypi.python.org/pypi/pywin32
 
+[aliases]
+build = darcsver --count-all-patches build_tahoe
+test = trial