@@ -104,7 +104,7 @@ def test_default_filename(self, mock_basepath):
104104 def test_config_is_not_overwritten (self ):
105105 """Check whether an existing config file is not replaced"""
106106
107- runner = click .testing .CliRunner (mix_stderr = False )
107+ runner = click .testing .CliRunner ()
108108
109109 with runner .isolated_filesystem () as fs :
110110 shutil .copy (MOCK_CONFIG_FILEPATH , fs )
@@ -132,7 +132,7 @@ def test_config_is_not_overwritten(self):
132132 def test_overwrite_config (self ):
133133 """Check whether an existing config file is overwritten"""
134134
135- runner = click .testing .CliRunner (mix_stderr = False )
135+ runner = click .testing .CliRunner ()
136136
137137 with runner .isolated_filesystem () as fs :
138138 shutil .copy (MOCK_CONFIG_FILEPATH , fs )
@@ -240,7 +240,7 @@ def test_default_filename(self, mock_basepath):
240240 def test_not_available_keys (self ):
241241 """Check if it raises an error when the key is not available"""
242242
243- runner = click .testing .CliRunner (mix_stderr = False )
243+ runner = click .testing .CliRunner ()
244244
245245 with runner .isolated_filesystem () as fs :
246246 shutil .copy (MOCK_CONFIG_FILEPATH , fs )
@@ -260,7 +260,7 @@ def test_not_available_keys(self):
260260 def test_invalid_keys (self ):
261261 """Check if it raises an error when the key is invalid"""
262262
263- runner = click .testing .CliRunner (mix_stderr = False )
263+ runner = click .testing .CliRunner ()
264264
265265 # Test keys that do not follow '<section>.<option>' schema
266266 with runner .isolated_filesystem () as fs :
@@ -321,7 +321,7 @@ def test_invalid_keys(self):
321321 def test_invalid_config_files (self ):
322322 """Check whether it raises and error reading invalid configuration files"""
323323
324- runner = click .testing .CliRunner (mix_stderr = False )
324+ runner = click .testing .CliRunner ()
325325
326326 # Test keys that do not follow '<section>.<option>' schema
327327 with runner .isolated_filesystem () as fs :
@@ -405,7 +405,7 @@ def test_default_filename(self, mock_basepath):
405405 def test_not_available_keys (self ):
406406 """Check if it raises an error when the key is not available"""
407407
408- runner = click .testing .CliRunner (mix_stderr = False )
408+ runner = click .testing .CliRunner ()
409409
410410 with runner .isolated_filesystem () as fs :
411411 shutil .copy (MOCK_CONFIG_FILEPATH , fs )
@@ -424,7 +424,7 @@ def test_not_available_keys(self):
424424 def test_invalid_keys (self ):
425425 """Check if it raises an error when the key is invalid"""
426426
427- runner = click .testing .CliRunner (mix_stderr = False )
427+ runner = click .testing .CliRunner ()
428428
429429 # Test keys that do not follow '<section>.<option>' schema
430430 with runner .isolated_filesystem () as fs :
@@ -480,7 +480,7 @@ def test_invalid_keys(self):
480480 def test_invalid_config_files (self ):
481481 """Check whether it raises and error reading invalid configuration files"""
482482
483- runner = click .testing .CliRunner (mix_stderr = False )
483+ runner = click .testing .CliRunner ()
484484
485485 with runner .isolated_filesystem () as fs :
486486 filepath = os .path .join (fs , 'unknown_file.cfg' )
0 commit comments