Skip to content

Commit

Permalink
[EMBR-5846] Fix URLSessionDelegate methods forwading based on `resp…
Browse files Browse the repository at this point in the history
…onds` and not only conformance (#133)
  • Loading branch information
ArielDemarco authored Dec 4, 2024
1 parent 4126927 commit 1dcd83c
Show file tree
Hide file tree
Showing 19 changed files with 550 additions and 327 deletions.
2 changes: 1 addition & 1 deletion .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ opt_in_rules:

included: # case-sensitive paths to include during linting. `--path` is ignored if present
- Sources
- Tests

excluded: # case-sensitive paths to ignore during linting. Takes precedence over `included`
- README.md
- docs
- Tests

reporter: "xcode" # reporter type (xcode, json, csv, checkstyle, codeclimate, junit, html, emoji, sonarqube, markdown, github-actions-logging, summary)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,11 @@
BlueprintName = "EmbraceCoreTests"
ReferencedContainer = "container:">
</BuildableReference>
<SkippedTests>
<Test
Identifier = "EmbraceCoreTests">
</Test>
</SkippedTests>
</TestableReference>
<TestableReference
skipped = "NO">
Expand Down
8 changes: 7 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ let package = Package(
dependencies: [
"EmbraceCore",
"TestSupport",
"TestSupportObjc",
.product(name: "GRDB", package: "GRDB.swift")
],
resources: [
Expand Down Expand Up @@ -265,7 +266,12 @@ let package = Package(
"EmbraceCommonInternal",
.product(name: "OpenTelemetrySdk", package: "opentelemetry-swift")
],
path: "Tests/TestSupport"
path: "Tests/TestSupport",
exclude: ["Objc"]
),
.target(
name: "TestSupportObjc",
path: "Tests/TestSupport/Objc"
)
]
)

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 1dcd83c

Please sign in to comment.