test_full.sh 273 B

12345678910111213
  1. #!/bin/bash
  2. set -ex
  3. echo Testing num-traits on rustc ${TRAVIS_RUST_VERSION}
  4. # num-traits should build and test everywhere.
  5. cargo build --verbose
  6. cargo test --verbose
  7. # test `no_std`
  8. cargo build --verbose --no-default-features
  9. cargo test --verbose --no-default-features