Coverage

1.0.6

Xcode coverage report analysis tool
elegantchaos/Coverage

What's New

1.0.6

2019-06-19T11:32:02Z

Updated dependencies.
Required macOS 10.13.

Coverage

A tool which uses xcrun and xccov to extract a summary of the code coverage results from an Xcode coverage report.


Interpret XCode code coverage results.

Usage:
coverage <results-path> [<target>] [--printFiles] [--printTargets] [--threshold=<amount>]
coverage --help

Arguments:
<results-path>        Path to the xcode results file.

<target>              The target to produce output for. If this is missing, output is produced for all targets.

Options:
--printFiles          Print coverage results for each file in the target(s).
--printTargets        Print coverage results for the target(s).
--threshold=<amount>  Tf coverage is below this threshold, we will return a non-zero error code.

Exit Status:

The coverage command exits with one of the following values:

0   If the arguments were ok and the threshold was met (or not specified).
1   If there was an error parsing the arguments.
2   If the threshold wasn't met.



Build

Build using SPM:

swift build

Run from the build directory

.build/debug/coverage --help

Install by simply copying .build/debug/coverage elsewhere.

Continuous Integration

You can use this tool in continuous integration runs, to check that your coverage remains above a certain threshold.

For example, to test whether the coverage project itself has a coverage of over 80%, you might do:

xcodebuild test -workspace Coverage.xcworkspace -scheme Coverage -enableCodeCoverage YES -resultBundlePath Test.xcresult
coverage Test.xcresult Coverage --threshold=0.8

If the coverage drops below the threshold, the coverage command will exit with a non-zero value, which should cause the CI job to fail.

Description

  • Swift Tools 5.0.0
View More Packages from this Author

Dependencies

Last updated: Tue Mar 12 2024 09:58:00 GMT-0900 (Hawaii-Aleutian Daylight Time)