aboutsummaryrefslogtreecommitdiff
path: root/src/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.py')
-rw-r--r--src/config.py8
1 files changed, 7 insertions, 1 deletions
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 <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# 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"