nalgebra/ci/test.sh

16 lines
400 B
Bash
Raw Normal View History

2018-05-25 00:29:52 +08:00
#! /bin/bash
set -ev
if [ -z "$NO_STD" ]; then
if [ -z "$LAPACK" ]; then
cargo test --verbose --no-default-features --features "std" --tests;
cargo test --verbose;
2019-09-16 19:41:26 +08:00
cargo test --verbose --features "arbitrary";
2019-03-20 05:53:21 +08:00
cargo test --verbose --all-features;
2018-10-07 12:09:46 +08:00
cd nalgebra-glm; cargo test --verbose;
else
cd nalgebra-lapack; cargo test --verbose;
fi
fi