danger-xcode_summary
danger-xcode_summary copied to clipboard
A Danger plugin that shows all build errors, warnings and unit tests results generated from xcodebuild.
Bitbucket Server doesn't use the same syntax for linking to a specific line in a file with [L in the path](https://github.com/diogot/danger-xcode_summary/blob/master/lib/xcode_summary/plugin.rb#L195). Dropping the L would make it work, but obviously...
After update to `1.0.0` the tool writes the full path to the file. I think it is a bug Take a look at the screenshot
Here's an example: https://github.com/el-hoshino/QuickshaRe/pull/11 With danger-swiftlint, it can put a review comment right onto the exact line of that warning/error when inline-mode is turned on, which is very easy to...
I would like to improve the ergonomics of Result by adding a parameter called `type` or `category` that specifies whether it's a build error, failing test, warning, etc. This would...
When I run danger, xcode_summary is only printing the tests_summary_messages. I get the following comment reported ``` Messages: - [ ] Executed 165 tests, with 0 failures (0 unexpected) in...
When using the new `testRepetitionMode` in Xcode a test can be automatically re-run if it fails. I've noticed that when a test is run multiple times, previous iteration errors are...
Addresses https://github.com/diogot/danger-xcode_summary/issues/73 Only parse test_failures if the overall status is not 'succeeded'. This ensures that tests that pass via test repetition do not show up as a false negative.
Looks like this repo is not getting much attention. I understand that @diogot has other commitments and not getting enough time for this repo. would you consider adding someone else...
I'm trying to add `danger-xcode_summary` following the info in the ReadMe but I'm always getting `Errors: - [ ] summary file not found` In my Dangerfile I have `xcode_summary.report 'MyApp.xcresult'`...
As of Xcode 16, test runs that are parallelized result in a separate message for each test case. This adds a new flag called `collapse_parallelized_tests` (defaults to `true`), which collapses...