Test nalgebra-sparse in CI
This commit is contained in:
parent
bda8207ffd
commit
86aeed6a09
|
@ -61,6 +61,15 @@ jobs:
|
||||||
- run:
|
- run:
|
||||||
name: test nalgebra-glm
|
name: test nalgebra-glm
|
||||||
command: cargo test -p nalgebra-glm --features arbitrary --features serde-serialize --features abomonation-serialize --features sparse --features debug --features io --features compare --features libm --features slow-tests
|
command: cargo test -p nalgebra-glm --features arbitrary --features serde-serialize --features abomonation-serialize --features sparse --features debug --features io --features compare --features libm --features slow-tests
|
||||||
|
- run:
|
||||||
|
name: test nalgebra-sparse
|
||||||
|
# Manifest-path is necessary because cargo otherwise won't correctly forward features
|
||||||
|
# We increase number of proptest cases to hopefully catch more potential bugs
|
||||||
|
command: PROPTEST_CASES=10000 cargo test --manifest-path=nalgebra-sparse/Cargo.toml --features compare,proptest-support
|
||||||
|
- run:
|
||||||
|
name: test nalgebra-sparse (slow tests)
|
||||||
|
# Unfortunately, the "slow-tests" take so much time that we need to run them with --release
|
||||||
|
command: PROPTEST_CASES=10000 cargo test --release --manifest-path=nalgebra-sparse/Cargo.toml --features compare,proptest-support,slow-tests slow
|
||||||
build-wasm:
|
build-wasm:
|
||||||
executor: rust-executor
|
executor: rust-executor
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in New Issue