From 13fa2431ce628fbd8e64b18e40bb0eda2ae46058 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 13 Sep 2020 14:34:57 +0200 Subject: Added pager option --- src/config.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/config.py') diff --git a/src/config.py b/src/config.py index ab5a922..a1bc12f 100644 --- a/src/config.py +++ b/src/config.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:19 by charles #+# #+# # -# Updated: 2020/09/13 11:48:55 by charles ### ########.fr # +# Updated: 2020/09/13 14:31:21 by charles ### ########.fr # # # # ############################################################################ # @@ -17,6 +17,7 @@ import os # run the bonus tests +# can be changed with `export MINISHELL_TEST_BONUS=yes` in your shell rc file. BONUS = False # minishell dir path @@ -31,8 +32,13 @@ MINISHELL_MAKE = True # path to reference shell (shell which will be compared minishell) # has to support the -c option (sh, bash and zsh support it) REFERENCE_PATH = "/bin/bash" +# can be changed with `export MINISHELL_TEST_ARGS=--poxix,--otherarg` REFERENCE_ARGS = [] # ["--posix"] +# pager to use with --pager option +# can be changed with `export MINISHELL_TEST_PAGER=yourpager` +PAGER = "less" + # log file path LOG_PATH = "result.log" -- cgit