diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-03-29 13:02:43 +0000 |
---|---|---|
committer | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-03-29 14:24:54 +0000 |
commit | bb84cdcfd5c5d4761778518a8e9d3c0ec7e7e949 (patch) | |
tree | 04dd837bf0374e7520fd234ff16fafc1115820df /test/scenario_test/noseplugin.py | |
parent | 3d808b5c0d6cbad6d62c2d267ca72d0e7605fb9b (diff) |
scenario_test: add option to specify exabgp_path
can be used to use local exabgp repository
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/scenario_test/noseplugin.py')
-rw-r--r-- | test/scenario_test/noseplugin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/scenario_test/noseplugin.py b/test/scenario_test/noseplugin.py index daabeb20..a0cedb80 100644 --- a/test/scenario_test/noseplugin.py +++ b/test/scenario_test/noseplugin.py @@ -9,6 +9,7 @@ class OptionParser(Plugin): def options(self, parser, env=os.environ): super(OptionParser, self).options(parser, env=env) parser.add_option('--use-local', action="store_true", dest="use_local", default=False) + parser.add_option('--exabgp-path', action="store", dest="exabgp_path", default="") parser.add_option('--go-path', action="store", dest="go_path", default="") parser.add_option('--gobgp-log-debug', action="store_true", dest="gobgp_log_debug", default=False) |