summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2020-11-15 20:56:21 +0100
committerNiels De Graef <nielsdegraef@gmail.com>2020-11-15 20:56:21 +0100
commit1c56833f810d8ec03cb7e8ee80a3cbeee13844ce (patch)
tree28ddc195227966146b1a48825a9a86cc2f7c86ac
parent5874816714a3183be176f464fe4f4ba9d704bb9d (diff)
downloadlibsecret-wip/nielsdg/fix-ci-coverage.tar.gz
ci: Fix the coverage buildwip/nielsdg/fix-ci-coverage
-rw-r--r--libsecret/meson.build10
1 files changed, 7 insertions, 3 deletions
diff --git a/libsecret/meson.build b/libsecret/meson.build
index 0c448b9..36fd1db 100644
--- a/libsecret/meson.build
+++ b/libsecret/meson.build
@@ -328,9 +328,13 @@ if get_option('introspection')
c_args: test_cflags,
)
- test(_valatest, test_bin,
- suite: 'vala',
- )
+ # FIXME: Don't add Vala tests when generating a coverage build, as this
+ # will fail due to https://github.com/mesonbuild/meson/issues/7426
+ if not get_option('b_coverage')
+ test(_valatest, test_bin,
+ suite: 'vala',
+ )
+ endif
endforeach
endif