Prefer testrun-no-deps over testrun.

This commit is contained in:
Pedro Algarvio 2014-04-07 23:00:53 +01:00
parent 51cb86237e
commit 20adbd725a

View file

@ -489,7 +489,7 @@ def run(opts):
# stream_stds=True
)
#proc.poll_and_read_until_finish()
stdout, stderr = proc.communicate()
stdout, _ = proc.communicate()
if stdout:
print(stdout)
@ -558,7 +558,7 @@ def parse():
help='The sls file to execute to prepare the system')
parser.add_option(
'--sls',
default='testrun',
default='testrun-no-deps',
help='The final sls file to execute')
parser.add_option(
'--pillar',