From af02ce8556ebbc027575d4eb197f8f7c88dcc926 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 28 Sep 2023 10:41:10 +1000 Subject: [PATCH] meson.build: remove duplicate pytest run We have a similar run later, let's use that since it's behind the option check for tests=enabled. --- meson.build | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/meson.build b/meson.build index 462ef3348..f34f752cb 100644 --- a/meson.build +++ b/meson.build @@ -124,16 +124,6 @@ test('files-in-git', args: [meson.current_source_dir()], suite: ['all']) -# This is a generic pytest invocation. If we end up with more than one -# pytest-compatible test somewhere, we'll conveniently run that one too. -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 - ############### tools ########################### tools_cflags = ['-DDATABASEPATH="@0@"'.format(dir_src_data)]