Skip to content

Commit ecd1867

Browse files
committed
Enable more CI tests
Before, there Serde tests where not running.
1 parent dac6227 commit ecd1867

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.travis.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,31 @@ matrix:
1414
# TODO: use --tests instead of --lib on more recent compiler
1515
- cargo test --lib --no-default-features
1616
- cargo test --package rand_core --no-default-features
17+
- cargo test --package rand_isaac --no-default-features
18+
- cargo test --package rand_isaac --features serde1,std
19+
- cargo test --package rand_xorshift --no-default-features
20+
- cargo test --package rand_xorshift --features serde1,std
1721
- cargo test --features serde1,log
1822
- rust: stable
1923
os: osx
2024
install:
2125
script:
2226
- cargo test --tests --no-default-features
2327
- cargo test --package rand_core --no-default-features
28+
- cargo test --package rand_isaac --no-default-features
29+
- cargo test --package rand_isaac --features serde1,std
30+
- cargo test --package rand_xorshift --no-default-features
31+
- cargo test --package rand_xorshift --features serde1,std
2432
- cargo test --features serde1,log
2533
- rust: beta
2634
install:
2735
script:
2836
- cargo test --tests --no-default-features
2937
- cargo test --package rand_core --no-default-features
38+
- cargo test --package rand_isaac --no-default-features
39+
- cargo test --package rand_isaac --features serde1,std
40+
- cargo test --package rand_xorshift --no-default-features
41+
- cargo test --package rand_xorshift --features serde1,std
3042
- cargo test --features serde1,log
3143
- rust: nightly
3244
install:
@@ -37,7 +49,7 @@ matrix:
3749
- cargo test --tests --no-default-features --features=alloc
3850
- cargo test --package rand_core --no-default-features --features=alloc,serde1
3951
- cargo test --features serde1,log,nightly,alloc
40-
- cargo test --all --benches
52+
- cargo test --all --all-features --benches
4153
# remove cached documentation, otherwise files from previous PRs can get included
4254
- rm -rf target/doc
4355
- cargo doc --no-deps --all --all-features

0 commit comments

Comments
 (0)