From b04f64aa48eeaf099fe52c28c512f956690f5eec Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 5 Oct 2021 20:18:00 -0600 Subject: pytest: Shorten traceback length by default This produces a lot of code output which is not very helpful and is quite annoying to wade through. Use the short format by default. Signed-off-by: Simon Glass --- test/py/test.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/py/test.py') diff --git a/test/py/test.py b/test/py/test.py index 285fda54258..95859a66e29 100755 --- a/test/py/test.py +++ b/test/py/test.py @@ -17,4 +17,9 @@ if __name__ == '__main__': # argv; py.test test_directory_name user-supplied-arguments args = [os.path.dirname(__file__) + '/tests'] args.extend(sys.argv) + + # Use short format by default + if not [arg for arg in args if '--tb=' in arg]: + args.append('--tb=short') + sys.exit(pytest.main(args)) -- cgit v1.2.3