diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/option_tests.py | 2 | ||||
-rw-r--r-- | tests/plugin_tests.py | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/option_tests.py b/tests/option_tests.py index 56480a58..44e2079f 100644 --- a/tests/option_tests.py +++ b/tests/option_tests.py @@ -16,6 +16,8 @@ class MockOptions(object): dry_run = False log_size = 25 allow_system_changes = False + skip_cmds = [] + skip_files = [] class GlobalOptionTest(unittest.TestCase): diff --git a/tests/plugin_tests.py b/tests/plugin_tests.py index 9290003a..0acf07f4 100644 --- a/tests/plugin_tests.py +++ b/tests/plugin_tests.py @@ -114,6 +114,8 @@ class MockOptions(object): log_size = 25 allow_system_changes = False no_postproc = False + skip_files = [] + skip_cmds = [] class PluginToolTests(unittest.TestCase): |