Skip to content

Commit d6d3510

Browse files
committed
Fix test filter in CI
1 parent d4d7bed commit d6d3510

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,12 @@ jobs:
4242
env:
4343
CODE_COVERAGE: ${{ matrix.code-coverage && '--enable-code-coverage' || '' }}
4444
run: |
45-
swift test --filter=^PostgresNIOTests --sanitize=thread ${CODE_COVERAGE}
45+
swift test --filter='^(PostgresNIOTests|ConnectionPoolModuleTests)' --sanitize=thread ${CODE_COVERAGE}
4646
- name: Submit code coverage
4747
if: ${{ matrix.code-coverage }}
4848
uses: vapor/swift-codecov-action@v0.2
4949

5050
linux-integration-and-dependencies:
51-
if: github.event_name == 'pull_request'
5251
strategy:
5352
fail-fast: false
5453
matrix:
@@ -129,7 +128,6 @@ jobs:
129128
run: swift test --package-path fluent-postgres-driver
130129

131130
macos-all:
132-
if: github.event_name == 'pull_request'
133131
strategy:
134132
fail-fast: false
135133
matrix:

0 commit comments

Comments
 (0)