Skip to content

Commit

Permalink
Try to make sure CI value is true for ios simulator
Browse files Browse the repository at this point in the history
  • Loading branch information
dcvz committed Apr 11, 2024
1 parent 6d5c8bf commit f122d94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
uses: actions/checkout@v2

- name: Run Tests
run: xcodebuild test -scheme SwiftAudioEx ${{ matrix.destination }} -enableCodeCoverage YES -test-iterations 5 -retry-tests-on-failure
run: xcodebuild test -scheme SwiftAudioEx ${{ matrix.destination }} -enableCodeCoverage YES -test-iterations 5 -retry-tests-on-failure CI=true
2 changes: 1 addition & 1 deletion Tests/SwiftAudioExTests/Utils/Helpers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ extension XCTestCase {
if ProcessInfo.processInfo.environment["CI"] != nil {
return 10 // Timeout for CI environment
} else {
return 5 // Default timeout for local environment
return 10 // Default timeout for local environment
}
}

Expand Down

0 comments on commit f122d94

Please sign in to comment.