From 558393a8cb4172a8f3cf212daddfed1a55dc9723 Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Thu, 20 Jan 2022 08:46:13 +0100 Subject: [PATCH] meson: Don't access the network when validating metadata Build servers might not allow network access and this shaves off a little time in the test suite. It shouldn't be a problem running the validation manually when adding new screenshots. --- data/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/data/meson.build b/data/meson.build index c577180..46b0181 100644 --- a/data/meson.build +++ b/data/meson.build @@ -42,6 +42,7 @@ if appstreamcli.found() test('Validate metainfo file', appstreamcli, args: ['validate', '--pedantic', + '--no-net', join_paths(meson.current_source_dir(), 'org.gnome.Calls.metainfo.xml') ])