From b26d928ddd2309375519c647f19920e4d96df8f6 Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Mon, 5 Feb 2024 11:26:06 -0600 Subject: [PATCH] Enable test suite by default Rather than making tests opt in, make them opt out. Distros should be running tests in their infrastructure as well during build time. --- .gitlab-ci.yml | 1 - meson_options.txt | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bb7392b..5ccca97 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -46,7 +46,6 @@ build_stable: --warnlevel 2 -Dgtk_doc=true -Dpylint=true - -Dtests=true -Db_coverage=true _build - env TMPDIR=$(pwd)/tmpdir meson test -C _build --print-errorlogs diff --git a/meson_options.txt b/meson_options.txt index 307bc6a..5e9a7ce 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -13,4 +13,4 @@ option('pylint', option('tests', description: 'Whether to run tests', type: 'boolean', - value: false) + value: true)