@@ -40,7 +40,7 @@ sudo: false
40
40
# - test no_std support, but only the unit tests:
41
41
# `cargo test --lib --no-default-features`
42
42
# - run unit tests and doctests with all features which are available on stable:
43
- # `cargo test --features=serde1, log`
43
+ # `cargo test --features=log`
44
44
# - test examples:
45
45
# `cargo test --examples`
46
46
# Additional tests on nightly:
@@ -64,7 +64,7 @@ matrix:
64
64
# Differs from standard script: rand_pcg features
65
65
- cargo test --lib --no-default-features
66
66
# TODO: add simd_support feature:
67
- - cargo test --features=serde1, log
67
+ - cargo test --features=log
68
68
- cargo test --examples
69
69
- cargo test --manifest-path rand_core/Cargo.toml
70
70
- cargo test --manifest-path rand_core/Cargo.toml --no-default-features
@@ -86,7 +86,7 @@ matrix:
86
86
# Differs from standard script: includes aarch64-apple-ios cross-build
87
87
- cargo test --lib --no-default-features
88
88
# TODO: add simd_support feature:
89
- - cargo test --features=serde1, log
89
+ - cargo test --features=log
90
90
- cargo test --examples
91
91
- cargo test --manifest-path rand_core/Cargo.toml
92
92
- cargo test --manifest-path rand_core/Cargo.toml --no-default-features
@@ -113,7 +113,8 @@ matrix:
113
113
script :
114
114
# Differs from standard script: alloc feature, all features, doc build
115
115
- cargo test --lib --no-default-features --features=alloc
116
- - cargo test --all-features
116
+ # Excludes serde1:
117
+ - cargo test --features=nightly,simd_support,log
117
118
- cargo test --benches --features=nightly
118
119
- cargo test --examples
119
120
- cargo test --manifest-path rand_core/Cargo.toml
@@ -207,7 +208,7 @@ before_install:
207
208
script :
208
209
- cargo test --lib --no-default-features
209
210
# TODO: add simd_support feature:
210
- - cargo test --features=serde1, log
211
+ - cargo test --features=log
211
212
- cargo test --examples
212
213
- cargo test --manifest-path rand_core/Cargo.toml
213
214
- cargo test --manifest-path rand_core/Cargo.toml --no-default-features
0 commit comments