From bbc429060270dc2cca31c54cecb5500a612ffc02 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 14 May 2024 13:35:54 +1000 Subject: [PATCH] meson.build: make pytest more verbose (#689) This makes it easier to analyze log files --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c93dd115..f7671634 100644 --- a/meson.build +++ b/meson.build @@ -292,7 +292,7 @@ if get_option('tests').enabled() pytest = find_program('pytest-3', 'pytest') test('pytest', pytest, - args: [meson.current_source_dir()], + args: ['--verbose', '--log-level=DEBUG', meson.current_source_dir()], env: env, suite: ['all']) endif