diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-05 20:09:06 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-05 20:09:06 +0100 |
| commit | 9d59bbdfb37869eec15551c03c167a2036f2d168 (patch) | |
| tree | 7606ffca4f3730464a6a90e3a37f7572886c74c1 /minishell_test | |
| parent | d2583247dbdcccb069213e5389e5695237577626 (diff) | |
| download | minishell_test-9d59bbdfb37869eec15551c03c167a2036f2d168.tar.gz minishell_test-9d59bbdfb37869eec15551c03c167a2036f2d168.tar.bz2 minishell_test-9d59bbdfb37869eec15551c03c167a2036f2d168.zip | |
Added installation as a command (#12)
Diffstat (limited to 'minishell_test')
| -rwxr-xr-x | minishell_test/__main__.py | 2 | ||||
| -rw-r--r-- | minishell_test/config.py | 4 |
2 files changed, 4 insertions, 2 deletions
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() diff --git a/minishell_test/config.py b/minishell_test/config.py index 493652c..3a787b0 100644 --- a/minishell_test/config.py +++ b/minishell_test/config.py @@ -6,7 +6,7 @@ # By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:19 by charles #+# #+# # -# Updated: 2021/01/31 04:41:29 by charles ### ########.fr # +# Updated: 2021/02/05 20:01:16 by charles ### ########.fr # # # # ############################################################################ # @@ -24,7 +24,7 @@ from typing import List BONUS = False # minishell dir path -MINISHELL_DIR = "../minishell" +MINISHELL_DIR = "." # minishell executable MINISHELL_EXEC = "minishell" |
