diff --git a/tests/test_add_profile.py b/tests/test_add_profile.py index 10be5d9..25e4839 100644 --- a/tests/test_add_profile.py +++ b/tests/test_add_profile.py @@ -82,6 +82,9 @@ def test_add_profile_no_param(self, capsys, monkeypatch): assert msg.BUILD_REQUIRED in out assert not err + arguments = arg_parser.parse_args(["del", "test_add_profile_ok"]) + executor.execute_command(arguments) + def test_add_profile_quiet(self, capsys, monkeypatch): arg_parser = parser.get_arguments_parser() arguments = arg_parser.parse_args(["-q", "add", "test_add_profile_ok"])