Skip to content

Commit c832e8f

Browse files
Upgrade test execution to MTP
1 parent c28f2a5 commit c832e8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/copilot-instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ msbuild.exe DSInternals.slnx -target:Build -property:Configuration=Release -prop
113113
cd Src
114114
115115
# Run all unit tests
116-
dotnet test DSInternals.DotNetSdk.slnf
116+
dotnet test --solution DSInternals.DotNetSdk.slnf
117117
118118
# Run tests for a specific project
119-
dotnet test DSInternals.Common.Test
119+
dotnet test --project DSInternals.Common.Test
120120
```
121121

122122
### Running PowerShell Smoke Tests

.github/workflows/autobuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Run Unit Tests
7474
working-directory: Src
7575
run: |
76-
dotnet test DSInternals.TestsOnly.slnf --configuration Debug --no-build -- --report-trx --results-directory "${{ github.workspace }}/TestResults"
76+
dotnet test --solution DSInternals.TestsOnly.slnf --configuration Debug --no-build -- --report-trx --results-directory "${{ github.workspace }}/TestResults"
7777
7878
- name: Run PowerShell Desktop Tests
7979
working-directory: Scripts

0 commit comments

Comments
 (0)