Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Build
run: ${{ matrix.options }} swift build -c ${{ matrix.config }}
- name: Test
run: ${{ matrix.options }} swift test -c ${{ matrix.config }}
run: ${{ matrix.options }} swift test -c ${{ matrix.config }} --no-parallel

coverage:
name: Code Coverage
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Build
run: ${{ matrix.options }} swift build -c ${{ matrix.config }}
- name: Test
run: ${{ matrix.options }} swift test -c ${{ matrix.config }}
run: ${{ matrix.options }} swift test -c ${{ matrix.config }} --no-parallel

skip-fuse:
name: Skip Fuse (Android)
Expand Down
2 changes: 1 addition & 1 deletion Scripts/coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fi
# 1. Run the tests with coverage instrumentation.
if [ "${SKIP_TEST:-0}" != "1" ]; then
echo "==> Running tests with code coverage"
swift test --enable-code-coverage
swift test --enable-code-coverage --no-parallel
fi

# 2. Locate the coverage artifacts SwiftPM produced.
Expand Down
Loading