Skip to content

Commit 305da47

Browse files
author
CIS Guru
committed
fix: Update CI to run tests from new numbered directory structure
- Test Core layer (6-Tests/Aquiis.Core.Tests) - Test Application layer (6-Tests/Aquiis.Application.Tests) - Test Shared UI components with bUnit (6-Tests/Aquiis.UI.Shared.Tests) - Omit Infrastructure tests (no tests yet) and Playwright UI tests (require running apps)
1 parent f6934f3 commit 305da47

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,11 @@ jobs:
2525
- name: Build
2626
run: dotnet build Aquiis.sln --no-restore --configuration Release
2727

28-
- name: Run focused tests
28+
- name: Test Core Layer
29+
run: dotnet test 6-Tests/Aquiis.Core.Tests/Aquiis.Core.Tests.csproj --no-build --configuration Release --verbosity normal
30+
31+
- name: Test Application Layer
2932
run: dotnet test 6-Tests/Aquiis.Application.Tests/Aquiis.Application.Tests.csproj --no-build --configuration Release --verbosity normal
33+
34+
- name: Test Shared UI Components (bUnit)
35+
run: dotnet test 6-Tests/Aquiis.UI.Shared.Tests/Aquiis.UI.Shared.Tests.csproj --no-build --configuration Release --verbosity normal

0 commit comments

Comments
 (0)