Skip to content

Commit 29f7022

Browse files
committed
Update GHA workflow
1 parent 3f88aa3 commit 29f7022

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/azure-dev-build-only.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff 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() }}

test/AzureOpenAIProxy.PlaygroundApp.Tests/UnitTest1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ public class UnitTest1
66
public void Test1()
77
{
88
}
9-
}
9+
}

0 commit comments

Comments
 (0)