-
I noticed that the [profile.ci]
fuzz_runs = 1000 We have to write this now: [profile.ci]
[fuzz]
runs = 1000 The question is - does this now apply to all profiles, or only to the I'm sorry, I imagine that this is more of a TOML parsing question than a Foundry question, though because this is a breaking change it would be worth it be clarified 🙏 My guess is that if I want to apply the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Here is an example of a foundry config that uses the default fuzz/invariant settings for the default, but changes the parameters for |
Beta Was this translation helpful? Give feedback.
[fuzz]
is an alias for[profile.default.fuzz]
. The default profile config is applied to other profiles as a fallback, i.e. if they don't have their own config. So:ci
profile with a[profile.ci.fuzz]
section.[profile.ci.fuzz]
section, the CI profile would use whatever is specified under[fuzz]
(or equivalently,[profile.default.fuzz]
)Here is an example of a foundry config that uses the default fuzz/invariant settings for the default, but changes the parameters for
lite
andci
profiles