diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-08-20 09:07:40 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-08-20 09:07:40 -0400 |
commit | 41da03c106ce6d92a45952e2ec4850429b3a3155 (patch) | |
tree | f3cc2d2baaba434af5735a5bde12e40ae85fb152 /tests/conftest.py | |
parent | 499fdd614f782de085054e2e50d926a0f0adb71f (diff) | |
download | cmd2-git-41da03c106ce6d92a45952e2ec4850429b3a3155.tar.gz |
feedback_to_output now defaults to False
This is so that non-essential info which isn't directly associated with command output, such as time elapsed while executing a command, won't redirect when command output is redirected using >, >>, or |.
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index bfbfdca4..97116b48 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -54,7 +54,7 @@ continuation_prompt: > debug: False echo: False editor: vim -feedback_to_output: True +feedback_to_output: False locals_in_py: True prompt: (Cmd) quiet: False @@ -66,18 +66,18 @@ if expect_colors: else: color_str = 'False' SHOW_LONG = """ -abbrev: False # Accept abbreviated commands -autorun_on_edit: False # Automatically run files after editing -colors: {} # Colorized output (*nix only) -continuation_prompt: > # On 2nd+ line of input -debug: False # Show full error stack on error -echo: False # Echo command issued into output -editor: vim # Program used by ``edit`` -feedback_to_output: True # Include nonessentials in `|`, `>` results -locals_in_py: True # Allow access to your application in py via self -prompt: (Cmd) # The prompt issued to solicit input -quiet: False # Don't print nonessential feedback -timing: False # Report execution times +abbrev: False # Accept abbreviated commands +autorun_on_edit: False # Automatically run files after editing +colors: {} # Colorized output (*nix only) +continuation_prompt: > # On 2nd+ line of input +debug: False # Show full error stack on error +echo: False # Echo command issued into output +editor: vim # Program used by ``edit`` +feedback_to_output: False # Include nonessentials in `|`, `>` results +locals_in_py: True # Allow access to your application in py via self +prompt: (Cmd) # The prompt issued to solicit input +quiet: False # Don't print nonessential feedback +timing: False # Report execution times """.format(color_str) |