Skip to content

Commit

Permalink
Restore the feature loop in CI
Browse files Browse the repository at this point in the history
We'll probably have rand to test soon too.
  • Loading branch information
cuviper committed Mar 6, 2018
1 parent cee3099 commit 403357d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ci/test_full.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ cargo test --verbose
cargo build --no-default-features
cargo test --no-default-features

# It also should build with serde features
cargo build --verbose --no-default-features --features=serde
cargo test --verbose --no-default-features --features=serde
# Each isolated feature should also work everywhere.
for feature in serde; do
cargo build --verbose --no-default-features --features="$feature"
cargo test --verbose --no-default-features --features="$feature"
done

0 comments on commit 403357d

Please sign in to comment.