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.
This commit is contained in:
Mario Limonciello 2024-02-05 11:26:06 -06:00 committed by Mario Limonciello
parent 9a4229339b
commit b26d928ddd
2 changed files with 1 additions and 2 deletions

View file

@ -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

View file

@ -13,4 +13,4 @@ option('pylint',
option('tests',
description: 'Whether to run tests',
type: 'boolean',
value: false)
value: true)