Skip to content

Commit

Permalink
Compile tests without si feature to keep compile times down.
Browse files Browse the repository at this point in the history
The `si` feature is included when tests are run with a smaller set of
storage types. Part of #52.
  • Loading branch information
iliekturtles committed May 2, 2018
1 parent aa734ff commit a06dad2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ install:
build: false
test_script:
- cargo build --verbose --no-default-features --features "usize isize bigint rational bigrational f32 f64 si std use_serde"
- cargo test --verbose --no-run --no-default-features --features "usize isize bigint rational bigrational f32 f64 si std use_serde"
- cargo test --verbose --no-run --no-default-features --features "usize isize bigint rational bigrational f32 f64 std use_serde"
- cargo test --all --verbose --features "use_serde"

notifications:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ before_script: |
script: |
cargo build --verbose --no-default-features --features "usize isize bigint rational bigrational f32 f64 si std use_serde" &&
cargo test --verbose --no-run --no-default-features --features "usize isize bigint rational bigrational f32 f64 si std use_serde" &&
cargo test --verbose --no-run --no-default-features --features "usize isize bigint rational bigrational f32 f64 std use_serde" &&
cargo test --verbose --features "use_serde $TRAVIS_RUST_VERSION" &&
cargo test --manifest-path tests/feature_check/Cargo.toml --verbose --features "$TRAVIS_RUST_VERSION"
Expand Down

0 comments on commit a06dad2

Please sign in to comment.