XCCov-Demo icon indicating copy to clipboard operation
XCCov-Demo copied to clipboard

Demo of Apple's new command line utility xccov shipped with Xcode 9.3

Results 6 XCCov-Demo issues
Sort by recently updated
recently updated
newest added

I am running the given command xcodebuild -project XCCov-Demo.xcodeproj/ -scheme XCCov-Demo -derivedDataPath Build/ -destination 'platform=iOS Simulator,OS=14.4,name=iPhone 12' -enableCodeCoverage YES clean build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO but the action.xccovreport is not getting...

The output path of Xcode coverage tool has changed. Xcode9 : `DerivedData/{build}/Logs/Test/{testpass}.xcovreport` Xcode10 : `DerivedData/{build}/Logs/Test/{testpass}.xcresult/{#}_Test/action.xcovreport` so when running the `xcrun xccov view Build/Logs/Test/*.xccovreport` it fails with the error: `Failed to...

According to your method, I got a single file coverage data, your code show as below: `$ xcrun xccov view --file ~/Desktop/XCCov-Demo/XCCov-Demo/AppDelegate.swift Build/Logs/Test/*.xccovarchive/` But I can't use the coverage data,...

With Xcode 10.2, code coverage file generated by `xccov` can not be opened in the finder. We can generate `xcresult` file by enabling the code coverage for this project ```...

While generating the diff of the code coverage report, followed the documentation from `man xccov` and `Xcode 10.2` [release notes](https://developer.apple.com/documentation/xcode_release_notes/xcode_10_2_release_notes) ## Env Xcode Version: `Version 10.2 (10E125)` Swift Version: ```...