From cf7a0b62051fd199017efa164a8af72c9003721d Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Thu, 3 Oct 2013 00:57:24 +0100 Subject: [PATCH] Don't trigger state events on pydsl unit tests. --- tests/unit/pydsl_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/pydsl_test.py b/tests/unit/pydsl_test.py index cc1ae8845e..0884b7d663 100644 --- a/tests/unit/pydsl_test.py +++ b/tests/unit/pydsl_test.py @@ -21,6 +21,7 @@ from salt.utils.pydsl import PyDslError REQUISITES = ['require', 'require_in', 'use', 'use_in', 'watch', 'watch_in'] OPTS = salt.config.minion_config(None) +OPTS['state_events'] = False OPTS['id'] = 'whatever' OPTS['file_client'] = 'local' OPTS['file_roots'] = dict(base=['/tmp'])