[py-svn] r37228 - py/branch/config/py/test

hpk at codespeak.net hpk at codespeak.net
Tue Jan 23 20:26:27 CET 2007


Author: hpk
Date: Tue Jan 23 20:26:25 2007
New Revision: 37228

Modified:
   py/branch/config/py/test/defaultconftest.py
Log:
streamlining options and docs some more


Modified: py/branch/config/py/test/defaultconftest.py
==============================================================================
--- py/branch/config/py/test/defaultconftest.py	(original)
+++ py/branch/config/py/test/defaultconftest.py	Tue Jan 23 20:26:25 2007
@@ -77,21 +77,21 @@
                help="python executable to run the tests with."),
         Option('-d', '--dist',
                action="store_true", dest="dist", default=False,
-               help="use ad-hoc distributed testing (requires conftest settings)"), 
+               help="ad-hoc distribute tests across machines (requires conftest settings)"), 
+        Option('-w', '--startserver',
+               action="store_true", dest="startserver", default=False,
+               help="starts local web server for displaying test progress.", 
+               ),
+        Option('-r', '--runbrowser',
+               action="store_true", dest="runbrowser", default=False,
+               help="run browser (implies --startserver)."
+               ),
         Option('', '--tkinter',
                action="store_true", dest="tkinter", default=False,
                help="use tkinter test session frontend."),
         Option('', '--box',
                action="store_true", dest="boxing",
                help="use boxing (running each test in external process)"),
-        Option('-w', '--startserver',
-               action="store_true", dest="startserver", default=False,
-               help="start HTTP server listening on localhost:8000 for test."
-               ),
-        Option('', '--runbrowser',
-               action="store_true", dest="runbrowser", default=False,
-               help="run browser to point to your freshly started web server."
-               ),
         Option('', '--rest',
                action='store_true', dest="restreport", default=False,
                help="restructured text output reporting."),



More information about the pytest-commit mailing list