You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the explicit #[proptest_config(Config ...)] is being used in a test, for any fields that are not Config::default() the PROPTEST_ env vars are ignored. I think it would be better to allow the env vars to override the config as it enables ad hoc changes without recompiling, but it is potentially a breaking change if someone relies on the current behavior.
The fix should be easy to do using fn contextualize_config from mod config.
The text was updated successfully, but these errors were encountered:
When the explicit
#[proptest_config(Config ...)]
is being used in a test, for any fields that are notConfig::default()
thePROPTEST_
env vars are ignored. I think it would be better to allow the env vars to override the config as it enables ad hoc changes without recompiling, but it is potentially a breaking change if someone relies on the current behavior.The fix should be easy to do using
fn contextualize_config
frommod config
.The text was updated successfully, but these errors were encountered: