3030
3131def test_describe_command_list_plugins (run_cli_command ):
3232 """Test that describe command can list all plugins."""
33- result = run_cli_command (["describe" , "plugin" ])
33+ result = run_cli_command (["--log-path" , "None" , " describe" , "plugin" ])
3434
3535 assert result .returncode == 0
3636 assert len (result .stdout ) > 0
@@ -40,7 +40,7 @@ def test_describe_command_list_plugins(run_cli_command):
4040
4141def test_describe_command_single_plugin (run_cli_command ):
4242 """Test that describe command can describe a single plugin."""
43- result = run_cli_command (["describe" , "plugin" , "BiosPlugin" ])
43+ result = run_cli_command (["--log-path" , "None" , " describe" , "plugin" , "BiosPlugin" ])
4444
4545 assert result .returncode == 0
4646 assert len (result .stdout ) > 0
@@ -50,7 +50,7 @@ def test_describe_command_single_plugin(run_cli_command):
5050
5151def test_describe_invalid_plugin (run_cli_command ):
5252 """Test that describe command handles invalid plugin gracefully."""
53- result = run_cli_command (["describe" , "plugin" , "NonExistentPlugin" ])
53+ result = run_cli_command (["--log-path" , "None" , " describe" , "plugin" , "NonExistentPlugin" ])
5454
5555 assert result .returncode != 0
5656 output = (result .stdout + result .stderr ).lower ()
0 commit comments