Skip to content

Commit

Permalink
CI: don't eanble --all-features when running the tests.
Browse files Browse the repository at this point in the history
This would enable the libm_force feature which results in less accurate results causing some tests to fail.
  • Loading branch information
sebcrozet committed Aug 25, 2020
1 parent a8f73cb commit b96181f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -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:
Expand Down

0 comments on commit b96181f

Please sign in to comment.