Skip to content

Latest commit

 

History

History

lesson-24-interactive-i

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Interactive Debugging

The Brownie interactive flag allows for extra convenience with debugging and development of smart contracts. When a test fails, it drops you right on a console at the exact point of failure with access to all relevant variables.

INTERACTIVE DEBUGGING MODE

When a test fails, open a console and interact with any variables at the point of failure.

    > brownie test --interactive
    > brownie test -I

STRATEGY EXCLUSION

Pass the exclude flag to filter an object, iterable or callable

    > strategy(strategy_type, excludes=...)