commit | 477f4817eedc0ef6306459de1f88d77739bee7cf | [log] [tgz] |
---|---|---|
author | Rich Lane <rich.lane@bigswitch.com> | Thu Oct 04 22:49:00 2012 -0700 |
committer | Rich Lane <rich.lane@bigswitch.com> | Fri Oct 05 12:30:31 2012 -0700 |
tree | 2133c905fdd5da93949bd4cc8bb343be93370b1c | |
parent | d1d9c287220588b5e8cff337f4f136ab9660a235 [diff] [blame] |
add a global config dictionary There was no need for each test module to keep a copy for itself. This means we can also get rid of test_set_init.
diff --git a/src/python/oftest/__init__.py b/src/python/oftest/__init__.py index 802dc75..c1cbb78 100644 --- a/src/python/oftest/__init__.py +++ b/src/python/oftest/__init__.py
@@ -1 +1,5 @@ '''Docstring to silence pylint; ignores --ignore option for __init__.py''' + +# Global config dictionary +# Populated by oft. +config = {}