Changeset - 10d7b01af4f0
[Not reviewed]
default
0 1 0
Mads Kiilerich - 9 years ago 2016-06-14 01:16:12
madski@unity3d.com
tests: make debug output from manual_test_vcs_operations Command.execute less noisy
1 file changed with 4 insertions and 2 deletions:
0 comments (0 inline, 0 general)
kallithea/tests/other/manual_test_vcs_operations.py
Show inline comments
 
@@ -71,8 +71,10 @@ class Command(object):
 
        p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE, cwd=self.cwd, env=testenv)
 
        stdout, stderr = p.communicate()
 
        if DEBUG:
 
            print 'stdout:', repr(stdout)
 
            print 'stderr:', repr(stderr)
 
            if stdout:
 
                print 'stdout:', repr(stdout)
 
            if stderr:
 
                print 'stderr:', repr(stderr)
 
        return stdout, stderr
 

	
 

	
0 comments (0 inline, 0 general)