Skip to content

Commit

Permalink
fixed the problem unit tests were not found in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
kerryjiang committed Aug 18, 2024
1 parent 99d4aae commit fdf5231
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,13 @@ jobs:
run: |
cd test/SuperSocket.Tests
dotnet test
- name: Test - NoLinux
if: runner.os != 'Linux'
- name: Test - macOS
if: runner.os == 'macOS'
run: |
cd test/SuperSocket.Tests
dotnet test --filter FullyQualifiedName\!~TestQuicSupport
dotnet test --filter FullyQualifiedName\!~TestQuicSupport
- name: Test - Windows
if: runner.os == 'Windows'
run: |
cd test/SuperSocket.Tests
dotnet test --filter FullyQualifiedName!~TestQuicSupport

0 comments on commit fdf5231

Please sign in to comment.