@@ -40,7 +40,7 @@ sudo: false
4040# - test no_std support, but only the unit tests:
4141# `cargo test --lib --no-default-features`
4242# - run unit tests and doctests with all features which are available on stable:
43- # `cargo test --features=serde1, log`
43+ # `cargo test --features=log`
4444# - test examples:
4545# `cargo test --examples`
4646# Additional tests on nightly:
@@ -64,7 +64,7 @@ matrix:
6464 # Differs from standard script: rand_pcg features
6565 - cargo test --lib --no-default-features
6666 # TODO: add simd_support feature:
67- - cargo test --features=serde1, log
67+ - cargo test --features=log
6868 - cargo test --examples
6969 - cargo test --manifest-path rand_core/Cargo.toml
7070 - cargo test --manifest-path rand_core/Cargo.toml --no-default-features
@@ -86,7 +86,7 @@ matrix:
8686 # Differs from standard script: includes aarch64-apple-ios cross-build
8787 - cargo test --lib --no-default-features
8888 # TODO: add simd_support feature:
89- - cargo test --features=serde1, log
89+ - cargo test --features=log
9090 - cargo test --examples
9191 - cargo test --manifest-path rand_core/Cargo.toml
9292 - cargo test --manifest-path rand_core/Cargo.toml --no-default-features
@@ -113,7 +113,8 @@ matrix:
113113 script :
114114 # Differs from standard script: alloc feature, all features, doc build
115115 - cargo test --lib --no-default-features --features=alloc
116- - cargo test --all-features
116+ # Excludes serde1:
117+ - cargo test --features=nightly,simd_support,log
117118 - cargo test --benches --features=nightly
118119 - cargo test --examples
119120 - cargo test --manifest-path rand_core/Cargo.toml
@@ -207,7 +208,7 @@ before_install:
207208script :
208209 - cargo test --lib --no-default-features
209210 # TODO: add simd_support feature:
210- - cargo test --features=serde1, log
211+ - cargo test --features=log
211212 - cargo test --examples
212213 - cargo test --manifest-path rand_core/Cargo.toml
213214 - cargo test --manifest-path rand_core/Cargo.toml --no-default-features
0 commit comments