Skip to content

Commit

Permalink
Release 6.1 (#268)
Browse files Browse the repository at this point in the history
* Fixed compiling issues on tvOS

* Removed unnecssary files

* Rollbacked codecov@v4 to v3
  • Loading branch information
ArielDemarco authored Jul 3, 2024
1 parent 0116188 commit 90cf49c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
upload-bundles: true

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Copyright © 2024 Embrace Mobile, Inc. All rights reserved.
//

#if canImport(WebKit)
import Foundation

extension WebViewCaptureService {
Expand All @@ -20,3 +21,4 @@ extension WebViewCaptureService {
}
}
}
#endif
2 changes: 1 addition & 1 deletion Tests/TestSupport/Extensions/XCTestCase+Extension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public extension XCTestCase {
var testName: String {
do {
var testName = try XCTUnwrap(name.split(separator: " ").last)
if #available(iOS 16.0, *) {
if #available(iOS 16.0, tvOS 16.0, *) {
let pattern = try Regex("]")
testName = testName.replacing(pattern, with: "()")
} else {
Expand Down

0 comments on commit 90cf49c

Please sign in to comment.