From 77e952f01ac1a3289562f3b9048ebead2ba6f46d Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Wed, 23 Jan 2019 15:53:25 +0000 Subject: [PATCH] AppVeyor: use --manifest-path over --package in tests --package causes problems where multiple versions exist (an issue since rdrand depends on rand_core:0.3). Also, we definitely don't need both. --- appveyor.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 70e4326e..70a8cada 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -37,13 +37,6 @@ test_script: - cargo test --features=serde1,log - cargo test --benches --features=nightly - cargo test --examples - - cargo test --package rand_core - - cargo test --package rand_core --no-default-features --features=alloc - - cargo test --package rand_isaac --features=serde1 - - cargo test --package rand_xorshift --features=serde1 - - cargo test --package rand_xoshiro - - cargo test --package rand_chacha - - cargo test --package rand_hc - cargo test --manifest-path rand_core/Cargo.toml - cargo test --manifest-path rand_core/Cargo.toml --no-default-features --features=alloc - cargo test --manifest-path rand_isaac/Cargo.toml --features=serde1