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
By customizing the debug and release profiles we can get ridd of a ton of #cfg[(test)] flags as we can make debug_assert be triggered inside of debug profile while in reality we compile with release settings (for performance such that tests don't take forever).
This should make much easier writting assertions and checks which will be restricted to testing runs only (as testing will be done with debug profile now).
The text was updated successfully, but these errors were encountered:
By customizing the
debug
andrelease
profiles we can get ridd of a ton of#cfg[(test)]
flags as we can makedebug_assert
be triggered inside ofdebug
profile while in reality we compile with release settings (for performance such that tests don't take forever).This should make much easier writting assertions and checks which will be restricted to testing runs only (as testing will be done with debug profile now).
The text was updated successfully, but these errors were encountered: