Skip to content

Commit

Permalink
Fix test filter in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gwynne committed Oct 13, 2023
1 parent d4d7bed commit d6d3510
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,12 @@ jobs:
env:
CODE_COVERAGE: ${{ matrix.code-coverage && '--enable-code-coverage' || '' }}
run: |
swift test --filter=^PostgresNIOTests --sanitize=thread ${CODE_COVERAGE}
swift test --filter='^(PostgresNIOTests|ConnectionPoolModuleTests)' --sanitize=thread ${CODE_COVERAGE}
- name: Submit code coverage
if: ${{ matrix.code-coverage }}
uses: vapor/[email protected]

linux-integration-and-dependencies:
if: github.event_name == 'pull_request'
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -129,7 +128,6 @@ jobs:
run: swift test --package-path fluent-postgres-driver

macos-all:
if: github.event_name == 'pull_request'
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit d6d3510

Please sign in to comment.