DocsCliProve

quell prove

Shows the percentage of requirements that are covered by existing tests for a given file or function.

Usage

quell prove FILE [OPTIONS]

Arguments

ArgumentDescription
FILESource file to check

Options

OptionDefaultDescription
--functionNoneRestrict to a specific function name
--root.Project root directory

Examples

# Score for a whole file
quell prove src/payments.py

# Score for a specific function
quell prove src/payments.py --function process_payment

Console output

 Quell Score
 80% of requirements proven for src/payments.py

Color indicates quality:

  • Green: score >= 80%
  • Yellow: score 60–79%
  • Red: score < 60%

Difference from quell score

CommandScopeUse case
quell prove FILESingle file or functionDuring development, before committing
quell scoreEntire projectOverview of overall requirement coverage

Use quell prove while writing code to check coverage as you go. Use quell score for project health dashboards and CI.