Make cargo test --tests only run integration tests

This commit is contained in:
Nadja Reitzenstein 2022-05-05 18:02:56 +02:00
parent ce204b9bc1
commit f1c726f672
2 changed files with 4 additions and 7 deletions

7
Cargo.lock generated
View File

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

View File

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