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
The main loop of net_dynamic_hb apparently has too many internal loops. Clippy throws an error cyclomatic_complexity if not is silenced. The loop has to be split into several functions accessing shared test state.
The text was updated successfully, but these errors were encountered:
@afck is do_drop_and_re_addfunction still invoked when running cargo test? I didn't get any errors/warnings when removing the clippy_cyclomatic_complexity flag. Also is there an IRC or slack channel associated with this project?
Edit: I see. I need to install clippy and use ci.sh file.
Yes, that's a clippy lint. Also, cargo clippy doesn't check the test code. You need to use cargo clippy --tests or cargo clippy --all-targets for that.
The main loop of
net_dynamic_hb
apparently has too many internal loops. Clippy throws an errorcyclomatic_complexity
if not is silenced. The loop has to be split into several functions accessing shared test state.The text was updated successfully, but these errors were encountered: