Index: grimoirelab-sortinghat-1.7.1/tests/cli/test_cmd_add.py =================================================================== --- grimoirelab-sortinghat-1.7.1.orig/tests/cli/test_cmd_add.py +++ grimoirelab-sortinghat-1.7.1/tests/cli/test_cmd_add.py @@ -225,7 +225,7 @@ class TestAddCommand(unittest.TestCase): client = MockClient(responses) mock_client.return_value = client - runner = click.testing.CliRunner(mix_stderr=False) + runner = click.testing.CliRunner() params = [ '--source', 'scm', Index: grimoirelab-sortinghat-1.7.1/tests/cli/test_cmd_config.py =================================================================== --- grimoirelab-sortinghat-1.7.1.orig/tests/cli/test_cmd_config.py +++ grimoirelab-sortinghat-1.7.1/tests/cli/test_cmd_config.py @@ -104,7 +104,7 @@ class TestInitConfig(unittest.TestCase): def test_config_is_not_overwritten(self): """Check whether an existing config file is not replaced""" - runner = click.testing.CliRunner(mix_stderr=False) + runner = click.testing.CliRunner() with runner.isolated_filesystem() as fs: shutil.copy(MOCK_CONFIG_FILEPATH, fs) @@ -132,7 +132,7 @@ class TestInitConfig(unittest.TestCase): def test_overwrite_config(self): """Check whether an existing config file is overwritten""" - runner = click.testing.CliRunner(mix_stderr=False) + runner = click.testing.CliRunner() with runner.isolated_filesystem() as fs: shutil.copy(MOCK_CONFIG_FILEPATH, fs) @@ -240,7 +240,7 @@ class TestSetConfig(unittest.TestCase): def test_not_available_keys(self): """Check if it raises an error when the key is not available""" - runner = click.testing.CliRunner(mix_stderr=False) + runner = click.testing.CliRunner() with runner.isolated_filesystem() as fs: shutil.copy(MOCK_CONFIG_FILEPATH, fs) @@ -260,7 +260,7 @@ class TestSetConfig(unittest.TestCase): def test_invalid_keys(self): """Check if it raises an error when the key is invalid""" - runner = click.testing.CliRunner(mix_stderr=False) + runner = click.testing.CliRunner() # Test keys that do not follow '
.