From a62b7315717eb6d404bd163b538293daf82bf829 Mon Sep 17 00:00:00 2001 From: James Vega Date: Thu, 9 Sep 2004 00:09:03 +0000 Subject: [PATCH] add dest='noplugins' & dest='nonetwork' instead of converting everything to use options.no_plugins and options.no_network --- test/test.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test.py b/test/test.py index 4936c68b8..9e45e1d80 100755 --- a/test/test.py +++ b/test/test.py @@ -124,8 +124,10 @@ if __name__ == '__main__': help='Sets the verbose flag, printing extra information ' 'about each test that runs.') parser.add_option('', '--no-network', action='store_true', default=False, - help='Causes the network-based tests not to run.') + dest='nonetwork', help='Causes the network-based tests ' + 'not to run.') parser.add_option('', '--no-plugins', action='store_true', default=False, + dest='noplugins', help='Causes the plugin tests not to run.') parser.add_option('', '--trace', action='store_true', default=False, help='Traces all calls made.')