diff options
author | Chun Kuan Lee <ken2812221@gmail.com> | 2018-08-20 02:54:54 +0800 |
---|---|---|
committer | Chun Kuan Lee <ken2812221@gmail.com> | 2018-09-17 09:56:49 +0800 |
commit | 2148c36b6ec02fcf10d6d3b76e50b690ee93bdfd (patch) | |
tree | c3ec637a5285aefb72d08de0e153b7335b72c4e3 /test/functional/combine_logs.py | |
parent | 3832c25f176753b7ddb724c26ee7543fb1e1819e (diff) |
tests: Make it possible to run functional tests on Windows
Diffstat (limited to 'test/functional/combine_logs.py')
-rwxr-xr-x | test/functional/combine_logs.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/functional/combine_logs.py b/test/functional/combine_logs.py index 3759913e44..3230d5cb6b 100755 --- a/test/functional/combine_logs.py +++ b/test/functional/combine_logs.py @@ -25,10 +25,6 @@ def main(): parser.add_argument('--html', dest='html', action='store_true', help='outputs the combined log as html. Requires jinja2. pip install jinja2') args, unknown_args = parser.parse_known_args() - if args.color and os.name != 'posix': - print("Color output requires posix terminal colors.") - sys.exit(1) - if args.html and args.color: print("Only one out of --color or --html should be specified") sys.exit(1) |