From b96181f6c40ed0a4b95f5c54b0824ef81796157b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Tue, 25 Aug 2020 21:04:37 +0200 Subject: [PATCH] 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. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ee64d7717..b21798d97 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: