Disable codecov/patch (#202)

This commit is contained in:
Doug 2022-09-22 09:31:57 +01:00 committed by GitHub
parent 8462862afc
commit 9841467b02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 10 deletions

View File

@ -242,7 +242,7 @@ struct Settings_Previews: PreviewProvider {
mediaProvider: MockMediaProvider()) mediaProvider: MockMediaProvider())
let viewModel = SettingsViewModel(withUserSession: userSession) let viewModel = SettingsViewModel(withUserSession: userSession)
return NavigationView { NavigationView {
SettingsScreen(context: viewModel.context) SettingsScreen(context: viewModel.context)
.previewInterfaceOrientation(.portrait) .previewInterfaceOrientation(.portrait)
} }

View File

@ -82,7 +82,7 @@ extension MatrixRustSDK.NoticeMessageContent: FormattedMessageContentProtocol {
/// the `msgtype` would likely contain a formatted body. /// the `msgtype` would likely contain a formatted body.
extension MessageTimelineItem where Content: FormattedMessageContentProtocol { extension MessageTimelineItem where Content: FormattedMessageContentProtocol {
var htmlBody: String? { var htmlBody: String? {
#warning("Should this check the formatted type?") guard content.formatted?.format == .html else { return nil }
return content.formatted?.body return content.formatted?.body
} }
} }

View File

@ -6,14 +6,7 @@ coverage:
# project coverage decrease by more than 1%: # project coverage decrease by more than 1%:
target: auto target: auto
threshold: 1% threshold: 1%
patch: patch: false
default:
# Be tolerant on slight code coverage diff on PRs to limit
# noisy red coverage status on github PRs.
# Note: The coverage stats are still uploaded
# to codecov so that PR reviewers can see uncovered lines
target: auto
threshold: 1%
ignore: ignore:
- "ElementX/Source/Generated" # ignore the folder and all its contents - "ElementX/Source/Generated" # ignore the folder and all its contents