From f122d94ee66e60947be37eeedb402eccfdb88d20 Mon Sep 17 00:00:00 2001 From: dcvz Date: Thu, 11 Apr 2024 16:38:35 +0200 Subject: [PATCH] Try to make sure CI value is true for ios simulator --- .github/workflows/validate.yml | 2 +- Tests/SwiftAudioExTests/Utils/Helpers.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 7d5ede6..1c0a748 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -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 diff --git a/Tests/SwiftAudioExTests/Utils/Helpers.swift b/Tests/SwiftAudioExTests/Utils/Helpers.swift index d472eb9..2412a06 100644 --- a/Tests/SwiftAudioExTests/Utils/Helpers.swift +++ b/Tests/SwiftAudioExTests/Utils/Helpers.swift @@ -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 } }