Skip to content

Commit

Permalink
Skip resource tests
Browse files Browse the repository at this point in the history
  • Loading branch information
giginet committed Jan 29, 2024
1 parent 70bd68a commit edea7fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ jobs:
fi
env:
ENABLE_INTEGRATION_TESTS: 1
IS_CI: 1
5 changes: 5 additions & 0 deletions Tests/ScipioKitTests/RunnerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,11 @@ final class RunnerTests: XCTestCase {
}

func testWithResourcePackage() async throws {
let isCI = (ProcessInfo.processInfo.environment["IS_CI"] ?? "") == "1"
#if swift(>=5.10)
try XCTSkipIf(isCI, "Currently, GitHub Action doesn't support Xcode 15.3. So this test can't be passed.")
#endif

let runner = Runner(
mode: .createPackage,
options: .init(
Expand Down

0 comments on commit edea7fa

Please sign in to comment.