Skip to content

Commit

Permalink
exclude quic test in macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
kerryjiang committed May 11, 2024
1 parent c7e67cd commit 822fd85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
run: dotnet build -c Release
- name: Build Samples
run: dotnet build -c Release samples/samples.sln
- name: Test
- name: Test - Not macOS
if: runner.os != 'macOS'
run: |
cd test/SuperSocket.Tests
dotnet test
- name: Test
- name: Test - macOS
if: runner.os == 'macOS'
run: |
cd test/SuperSocket.Tests
dotnet test --filter Category!=QUIC
dotnet test --filter FullyQualifiedName!~QuicHostConfigurator

0 comments on commit 822fd85

Please sign in to comment.