cargo test
does not run test_apply
?
#455
-
I have observed a weird thing and just wanted to make sure if anyone else is facing this too ? When I just run As soon as i remove |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @udsamani ,
To run the
And yes, all tests are indeed run in CI: This is all because we have four different qsv binary variants - qsv, qsvlite, qsvdp and qsvnp - and we have different feature flags tp build each variant - https://github.com/jqnatividad/qsv/blob/3b5ec48c9107acbfb88d66b60627cf64c19e0f1d/Cargo.toml#L19-L41 With |
Beta Was this translation helpful? Give feedback.
Hi @udsamani ,
To run all tests, be sure to set these features:
To run the
test_apply
suite specifically, at the very least, theapply
feature needs to be enabled:cargo test test_apply --features apply
And yes, all tests are indeed run in CI:
https://github.com/jqnatividad/qsv/blob/3b5ec48c9107acbfb88d66b60627cf64c19e0f1d/.github/workflows/rust.yml#L37-L38
This is all because we have four different qsv binary variants - qsv, qsvlite, qsvdp and qsvnp - and we have different feature flags…