From 6647dfeba76e22d821ac871e809f34cd8b6f611e Mon Sep 17 00:00:00 2001 From: Mohammed Anas Date: Wed, 10 Apr 2024 13:24:31 +0100 Subject: [PATCH] build: don't run `cargo test` There are no tests for it to run anyway, so it just compiles Loupe for nothing. --- src/meson.build | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/meson.build b/src/meson.build index 2e43e223..23d05923 100644 --- a/src/meson.build +++ b/src/meson.build @@ -76,16 +76,3 @@ cargo_doc = custom_target( cargo_options + ['--no-deps', '--document-private-items'], ], ) - -test( - 'cargo-test', - cargo, - args: [ - 'test', - cargo_options, - '--', - '--test-threads=1', - ], - is_parallel: false, - timeout: 1800, -) -- GitLab