diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index c3ec1ef53..0d4eb9b2d 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -51,16 +51,6 @@ jobs: -instr-profile=.build-test-debug/debug/codecov/default.profdata \ .build-test-debug/debug/OpenSwiftUIPackageTests.xctest/Contents/MacOS/OpenSwiftUIPackageTests \ > coverage.txt - - name: Build and run tests in release mode - run: | - set -o pipefail - NSUnbufferedIO=YES swift test \ - -c release \ - --filter OpenSwiftUITests \ - --filter OpenSwiftUICoreTests \ - --enable-code-coverage \ - --build-path .build-test-release \ - 2>&1 | xcbeautify --renderer github-actions --preserve-unbeautified - uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 8c635a269..2531713bb 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -41,14 +41,6 @@ jobs: .build-test-debug/debug/OpenSwiftUIPackageTests.xctest \ > coverage.txt id: debug-test - - name: Building and running tests in release mode - run: | - swift test \ - -c release \ - --filter OpenSwiftUITests \ - --filter OpenSwiftUICoreTests \ - --build-path .build-test-release - id: release-test - uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }}