From 6d067fcba2bf84fb5e7c7691b796d42d67028176 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Wed, 29 Aug 2018 09:44:01 -0700 Subject: Turn on test debugging Signed-off-by: Jhon Honce Closes: #1369 Approved by: rhatdan --- contrib/python/podman/test/test_tunnel.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'contrib/python/podman/test/test_tunnel.py') diff --git a/contrib/python/podman/test/test_tunnel.py b/contrib/python/podman/test/test_tunnel.py index 8ee4b1052..9a33e76cd 100644 --- a/contrib/python/podman/test/test_tunnel.py +++ b/contrib/python/podman/test/test_tunnel.py @@ -1,5 +1,6 @@ from __future__ import absolute_import +import logging import time import unittest from unittest.mock import MagicMock, patch @@ -66,16 +67,19 @@ class TestTunnel(unittest.TestCase): ) tunnel = Tunnel(context).bore() - cmd = [ - 'ssh', - '-fNT', - '-q', + cmd = ['ssh', '-fNT'] + if logging.getLogger().getEffectiveLevel() == logging.DEBUG: + cmd.append('-v') + else: + cmd.append('-q') + + cmd.extend(( '-L', '{}:{}'.format(context.local_socket, context.remote_socket), '-i', context.identity_file, '{}@{}'.format(context.username, context.hostname), - ] + )) mock_finalize.assert_called_once_with(tunnel, tunnel.close) mock_exists.assert_called_once_with(context.local_socket) -- cgit v1.2.3-54-g00ecf