diff options
author | Xiao-Yong <jinxiaoyong@gmail.com> | 2018-04-12 10:57:34 -0500 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-04-12 17:57:34 +0200 |
commit | f543388959a4c74e4fa04e56d7e1961b5c44b4c0 (patch) | |
tree | 60961e11def3ff5902ea519133cec2fa8b5fd8f8 /tests | |
parent | f3db632b1d730892e6770a6034acfb8aec077b34 (diff) | |
download | Nim-f543388959a4c74e4fa04e56d7e1961b5c44b4c0.tar.gz |
unittest: default no color if stdout is not a tty (#7424)
We accept a new environment variable, NIMTEST_COLOR, which override the effect of NIMTEST_NO_COLOR. The environment variable, NIMTEST_COLOR, can be 'never' or 'always', which set the color output to false or true, respectively.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testament/tester.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testament/tester.nim b/tests/testament/tester.nim index 06f5fec7d..856f95f3b 100644 --- a/tests/testament/tester.nim +++ b/tests/testament/tester.nim @@ -427,7 +427,7 @@ include categories # if status: reSuccess else: reOutputsDiffer) proc main() = - os.putenv "NIMTEST_NO_COLOR", "1" + os.putenv "NIMTEST_COLOR", "never" os.putenv "NIMTEST_OUTPUT_LVL", "PRINT_FAILURES" backend.open() |