summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2022-08-04 09:09:36 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2022-08-04 09:24:06 +1000
commitc9c23e5e42ba7695f1f8dfbc29c7d1bca4d3b42e (patch)
tree5ccb362ef2ad429a89a0904f246e07f18f10d498
parent6064d7526a991c585e4aa809397eda44dc6c270e (diff)
downloadlibwacom-c9c23e5e42ba7695f1f8dfbc29c7d1bca4d3b42e.tar.gz
meson.build: run pytest with lots of verbosity
Makes things a lot easier to debug in the resulting meson-logs/testlog.txt Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 20ee652..567cb4c 100644
--- a/meson.build
+++ b/meson.build
@@ -129,6 +129,7 @@ test('files-in-git',
pytest = find_program('pytest-3', required: false)
if pytest.found()
test('pytests', pytest,
+ args: ['-vv', '--log-level=DEBUG'],
workdir: meson.current_source_dir(),
env: ['LIBWACOM_DATA_DIR=@0@'.format(dir_src_data)])
endif