-
Notifications
You must be signed in to change notification settings - Fork 81
Closed
Description
The tests in the tests
folder are not run.
Because of the [[test]]
in Cargo.toml
cargo only run the test specified here. And this test is just an empty file. Because you want to use a non-default feature in a test, this means you cannot just remove this section.
I see multiple ways to solve this issue:
- Manually specify all the tests in
Cargo.toml
- Include all other tests from
liquid.rs
(viamod
) (this could be done automatically with code generation inbuild.rs
) - Remove the section from
Cargo.toml
but specify the feature on the command line each time (cargo test --features "serde"
)
Metadata
Metadata
Assignees
Labels
No labels