[run]
# Include specific source so we can tell when entire directories are not measured
source = 
    leaf_server_common

# Omit specific files or directories from the coverage measurement
omit =
    # Exclude the entire 'tests' directory
    tests/*
    # Exclude everything in /usr which usually also means Python standard library
    /usr/*

# Do not measure coverage for the Python standard library
cover_pylib = false

[report]
# Omit specific files or directories from the coverage measurement
omit =
    # Exclude the entire 'tests' directory
    tests/*
    # Exclude everything in /usr which usually also means Python standard library
    /usr/*
