Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
run: dotnet build Aquiis.sln --no-restore --configuration Release

- name: Run focused tests
run: dotnet test Aquiis.SimpleStart.Tests/Aquiis.SimpleStart.Tests.csproj --no-build --configuration Release --verbosity normal
run: dotnet test 6-Tests/Aquiis.Application.Tests/Aquiis.Application.Tests.csproj --no-build --configuration Release --verbosity normal
Copy link

Copilot AI Jan 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The test project path has been updated to reference 6-Tests/Aquiis.Application.Tests/Aquiis.Application.Tests.csproj, but this directory structure doesn't exist in the repository. The current codebase shows Aquiis.SimpleStart.Tests/ exists in the root directory, and the solution file (Aquiis.sln) only references Aquiis.SimpleStart.Tests, not the new Aquiis.Application.Tests project.

Since this step uses the --no-build flag, it depends on the previous build step which builds Aquiis.sln. If the new test project isn't included in the solution file, it won't be built, and this test command will fail with a "project not found" or "no binaries to test" error.

Either the new test project path needs to be added to the solution file, or this CI workflow update is premature and should be reverted to the original path until the project restructuring is complete.

Suggested change
run: dotnet test 6-Tests/Aquiis.Application.Tests/Aquiis.Application.Tests.csproj --no-build --configuration Release --verbosity normal
run: dotnet test Aquiis.SimpleStart.Tests/Aquiis.SimpleStart.Tests.csproj --no-build --configuration Release --verbosity normal

Copilot uses AI. Check for mistakes.
Loading