File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
test/AzureOpenAIProxy.PlaygroundApp.Tests Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -53,10 +53,16 @@ jobs:
5353 run : |
5454 dotnet build
5555
56- - name : Test solution
56+ - name : Run unit tests
5757 shell : bash
5858 run : |
59- dotnet test --logger "trx" --collect:"XPlat Code Coverage"
59+ dotnet test ./test/AzureOpenAIProxy.AppHost.Tests --logger "trx" --collect:"XPlat Code Coverage"
60+ dotnet test ./test/AzureOpenAIProxy.ApiApp.Tests --logger "trx" --collect:"XPlat Code Coverage"
61+
62+ # - name: Run integration tests
63+ # shell: bash
64+ # run: |
65+ # dotnet test ./test/AzureOpenAIProxy.PlaygroundApp.Tests --logger "trx" --collect:"XPlat Code Coverage"
6066
6167 - name : Publish test results
6268 if : ${{ !cancelled() }}
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ public class UnitTest1
66 public void Test1 ( )
77 {
88 }
9- }
9+ }
You can’t perform that action at this time.
0 commit comments