From f1c726f672c23516e5fce6ee9634069c6ebad0fc Mon Sep 17 00:00:00 2001 From: Nadja Reitzenstein Date: Thu, 5 May 2022 18:02:56 +0200 Subject: [PATCH] Make `cargo test --tests` only run integration tests --- Cargo.lock | 7 ------- Cargo.toml | 4 ++++ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 781b10a..b23aaae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -881,13 +881,6 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" -[[package]] -name = "dummy" -version = "0.1.0" -dependencies = [ - "sdk", -] - [[package]] name = "either" version = "1.6.1" diff --git a/Cargo.toml b/Cargo.toml index edd5c62..b609391 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,10 +19,14 @@ lto = "thin" [lib] path = "bffhd/lib.rs" +# Don't run unit tests on `cargo test --tests`, only run integration tests. +test = false [[bin]] name = "bffhd" path = "bin/bffhd/main.rs" +# Don't run unit tests on `cargo test --tests`, only run integration tests. +test = false [dependencies] libc = "0.2.101"