File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -44,12 +44,13 @@ def check_output(*popenargs, **kwargs):
4444 subprocess .check_output = check_output
4545
4646import logging
47- logging .getLogger ('paramiko.transport' ).setLevel (logging .WARNING )
47+ logging .getLogger ('paramiko.transport' ).setLevel (logging .ERROR )
4848
4949from vagrant import Vagrant
5050from unittest import TestCase
5151from paramiko .config import SSHConfig
5252from paramiko .client import SSHClient , AutoAddPolicy
53+ from fabric import state
5354from fabric .api import env
5455from fabric .api import run , hide
5556from envassert import file , detect
@@ -177,6 +178,11 @@ def setUp(self):
177178 env .timeout = 5
178179 env .disable_known_hosts = True
179180 env .platform_family = detect .detect ()
181+ state .output .running = False
182+ state .output .status = False
183+ state .output .stdout = False
184+ state .output .stderr = False
185+ state .output .warnings = False
180186
181187 # this could break down when executing multiple test cases in parallel in the same python process
182188 # def tearDown(self):
You can’t perform that action at this time.
0 commit comments