File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,18 +40,18 @@ jobs:
4040 run : dotnet build --no-restore --configuration Release
4141
4242 - name : Run API unit tests (fast feedback)
43- run : dotnet test --configuration Release --no-build -- treenode-filter "/**[Category=Unit]" ${{ github.event_name == 'pull_request' && '--fail-fast' || '' }}
43+ run : dotnet test --configuration Release --treenode-filter "/**[Category=Unit]" ${{ github.event_name == 'pull_request' && '--fail-fast' || '' }}
4444 working-directory : src/ApiService/BookStore.ApiService.Tests
4545 # TUnit automatically generates GitHub Actions test summary
4646 # Run fast unit tests first for quick feedback
4747
4848 - name : Run analyzer tests
49- run : dotnet test --configuration Release --no-build -- treenode-filter "/**[Category=Unit]"
49+ run : dotnet test --configuration Release --treenode-filter "/**[Category=Unit]"
5050 working-directory : src/ApiService/BookStore.ApiService.Analyzers.Tests
5151 # Verify Roslyn analyzers work correctly
5252
5353 - name : Run web integration tests
54- run : dotnet test --configuration Release --no-build -- treenode-filter "/**[Category=Integration]"
54+ run : dotnet test --configuration Release --treenode-filter "/**[Category=Integration]"
5555 working-directory : src/Web/BookStore.Web.Tests
5656 # Integration tests run after unit tests pass
5757 # Slower tests that require full application stack
You can’t perform that action at this time.
0 commit comments