Closed
Description
Just days after ndarray
introduced no_std, approx
did the same. As a result, users can use both no_std
and approx
together via --no-default-features --features approx
. Currently, our CI/CD runs one test batch for --no-default-features
and one test batch for --features docs
, which includes approx
; as a result, it misses a number of tests which are configured with feature = approx
but not configured with feature = std
. Examples include:
var_axis
,std_axis
, etc innumeric.rs
- The bottommost test of
serial_many_dim_serde
inserialization-tests
, which useslinspace
(requiresstd
) but isn't marked withfeature = serde
These should be pretty simple fixes: add the appropriate cfg
s and alter the CI/CD to include a test run that has --no-default-features
with approx
.
Metadata
Metadata
Assignees
Labels
No labels