Files
cleveragents-core/robot/coverage_threshold.robot
T
freemo 9b30421b34
CI / lint (pull_request) Successful in 16s
CI / typecheck (pull_request) Successful in 27s
CI / security (pull_request) Successful in 21s
CI / quality (pull_request) Successful in 16s
CI / integration_tests (pull_request) Successful in 4m10s
CI / build (pull_request) Successful in 15s
CI / unit_tests (pull_request) Successful in 8m0s
CI / docker (pull_request) Successful in 40s
CI / coverage (pull_request) Successful in 6m22s
CI / lint (push) Successful in 13s
CI / typecheck (push) Successful in 27s
CI / security (push) Successful in 22s
CI / quality (push) Successful in 15s
CI / integration_tests (push) Successful in 4m16s
CI / build (push) Successful in 15s
CI / unit_tests (push) Successful in 8m2s
CI / docker (push) Successful in 39s
CI / coverage (push) Successful in 6m23s
feat(db): add spec-aligned action and plan tables with migrations, ORM models, and benchmarks
2026-02-13 13:05:20 -05:00

28 lines
1015 B
Plaintext

*** Settings ***
Documentation Coverage threshold enforcement tests
Library Process
Library OperatingSystem
*** Variables ***
${PYTHON} python
*** Test Cases ***
Nox Coverage Session Is Listed
[Documentation] Verify coverage_report is a registered nox session
[Tags] slow
${result}= Run Process nox --list timeout=30s
Should Be Equal As Integers ${result.rc} 0
Should Contain ${result.stdout} coverage_report
Coverage Config Exists In Pyproject
[Documentation] Verify pyproject.toml has coverage configuration
${content}= Get File ${CURDIR}/../pyproject.toml
Should Contain ${content} [tool.coverage.run]
Should Contain ${content} source
Should Contain ${content} branch = true
Coverage Threshold Is 97 In Noxfile
[Documentation] Verify noxfile enforces 97% threshold
${content}= Get File ${CURDIR}/../noxfile.py
Should Contain ${content} --fail-under=97