CI: don't eanble --all-features when running the tests.

This would enable the libm_force feature which results in less accurate results causing some tests to fail.
This commit is contained in:
Sébastien Crozet 2020-08-25 21:04:37 +02:00
parent a8f73cb7b2
commit b96181f6c4
1 changed files with 2 additions and 2 deletions

View File

@ -47,10 +47,10 @@ jobs:
- checkout
- run:
name: test
command: cargo test --all-features
command: cargo test --features arbitrary --features serde-serialize --features abomonation-serialize --features sparse --features debug --features io --features compare --features libm
- run:
name: test nalgebra-glm
command: cargo test -p nalgebra-glm --all-features
command: cargo test -p nalgebra-glm --features arbitrary --features serde-serialize --features abomonation-serialize --features sparse --features debug --features io --features compare --features libm
build-wasm:
executor: rust-executor
steps: