num-traits/ci/test_full.sh

18 lines
453 B
Bash
Raw Normal View History

#!/bin/bash
set -ex
echo Testing num-traits on rustc ${TRAVIS_RUST_VERSION}
2018-01-12 15:06:45 +00:00
# num-traits should build and test everywhere.
cargo build --verbose
cargo test --verbose
2018-01-12 15:06:45 +00:00
# It should build with minimal features too.
cargo build --no-default-features
cargo test --no-default-features
# num-traits with explicit std feature
cargo build --verbose --no-default-features --features="$feature"
cargo test --verbose --no-default-features --features="$feature"