From 9d59bbdfb37869eec15551c03c167a2036f2d168 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 5 Feb 2021 20:09:06 +0100 Subject: Added installation as a command (#12) --- minishell_test/__main__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'minishell_test/__main__.py') diff --git a/minishell_test/__main__.py b/minishell_test/__main__.py index 7b4b886..1728029 100755 --- a/minishell_test/__main__.py +++ b/minishell_test/__main__.py @@ -80,6 +80,8 @@ def main(argv=None): try: Suite.run_all() except KeyboardInterrupt: + pass + finally: sandbox.remove() Suite.summarize() -- cgit