From 0ce93414b507273cb02799dd5010683650b49dee Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Fri, 2 Jun 2023 20:33:57 -0700 Subject: [PATCH] reduce line count --- pytest_output_to_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest_output_to_files.py b/pytest_output_to_files.py index 82e8484..7be7ba0 100644 --- a/pytest_output_to_files.py +++ b/pytest_output_to_files.py @@ -12,7 +12,7 @@ if os.name != 'posix': raise ValueError( f"{sys.platform} is not supported by pytest-output-to-files") -_DEFAULT_LINE_LIMIT = 5000 +_DEFAULT_LINE_LIMIT = 500 class _Capture: -- 2.30.2