aboutsummaryrefslogtreecommitdiff
path: root/src/config.py
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-13 14:34:57 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-13 14:50:49 +0200
commit13fa2431ce628fbd8e64b18e40bb0eda2ae46058 (patch)
treecdd60ca00241afd4ffc14e7218ddf379fb1268ec /src/config.py
parent1caecc346a24c7e3e10e310ff564e8ec0e760ffa (diff)
downloadminishell_test-13fa2431ce628fbd8e64b18e40bb0eda2ae46058.tar.gz
minishell_test-13fa2431ce628fbd8e64b18e40bb0eda2ae46058.tar.bz2
minishell_test-13fa2431ce628fbd8e64b18e40bb0eda2ae46058.zip
Added pager option
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"