Skip to content

Commit 16ce736

Browse files
committed
ci: Remove --no-build flag from dotnet test commands in CI workflow.
1 parent 9253c1a commit 16ce736

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)