mirror of
https://github.com/bevyengine/bevy
synced 2025-02-16 14:08:32 +00:00
Math tests fix (#12748)
# Objective Fixes `cargo test -p bevy_math` as in #12729. ## Solution As described in [message](https://github.com/bevyengine/bevy/issues/12729#issuecomment-2022197944) Added workaround `bevy_math = { path = ".", version = "0.14.0-dev", features = ["approx"] }` to `bevy_math`'s `dev-dependencies` --------- Co-authored-by: BD103 <59022059+BD103@users.noreply.github.com>
This commit is contained in:
parent
4508077297
commit
c38e2d037d
1 changed files with 2 additions and 0 deletions
|
@ -23,6 +23,8 @@ approx = "0.5"
|
|||
# Supply rngs for examples and tests
|
||||
rand = "0.8"
|
||||
rand_chacha = "0.3"
|
||||
# Enable the approx feature when testing.
|
||||
bevy_math = { path = ".", version = "0.14.0-dev", features = ["approx"] }
|
||||
|
||||
[features]
|
||||
default = ["rand"]
|
||||
|
|
Loading…
Add table
Reference in a new issue