From f59bd36c89f1d602e2a25267cbb8a492fe46ff6e Mon Sep 17 00:00:00 2001 From: sturmianseq Date: Sun, 15 Aug 2021 01:47:19 -0700 Subject: [PATCH] deleting test_add_profile_ok after executing test body --- tests/test_add_profile.py | 3 +++ 1 file changed, 3 insertions(+) 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"])