[CMF-checkins] CVS: CMF - all_cmf_tests.py:1.7
Chris Withers
chrisw@nipltd.com
Tue, 10 Dec 2002 14:08:45 -0500
Update of /cvs-repository/CMF
In directory cvs.zope.org:/tmp/cvs-serv28090
Modified Files:
all_cmf_tests.py
Log Message:
Allow tests to be run quietly as well as verbosely. The difference between testrunner.py -v and all_cmf_tests.py -v is irriating but is actually induced by testrunner.py ;-(
=== CMF/all_cmf_tests.py 1.6 => 1.7 ===
--- CMF/all_cmf_tests.py:1.6 Tue Nov 19 09:42:24 2002
+++ CMF/all_cmf_tests.py Tue Dec 10 14:08:44 2002
@@ -55,12 +55,12 @@
import getopt
try:
- opts, args = getopt.getopt( sys.argv[1:], 'v?' )
+ opts, args = getopt.getopt( sys.argv[1:], 'vq?' )
except getopt.GetoptError:
usage()
sys.argv[ 1: ] = []
- PASSTHROUGH = ( '-v', )
+ PASSTHROUGH = ( '-v', '-q' )
for k, v in opts: