File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -71,14 +71,17 @@ jobs:
71
71
dotnet test ./test/AzureOpenAIProxy.AppHost.Tests --no-build --logger "trx" --collect:"XPlat Code Coverage"
72
72
dotnet test ./test/AzureOpenAIProxy.ApiApp.Tests --no-build --logger "trx" --collect:"XPlat Code Coverage"
73
73
74
- - name : Run integration tests
74
+ - name : Run AzureOpenAIProxy.AppHost in background
75
75
shell : bash
76
76
run : |
77
77
dotnet run --project ./src/AzureOpenAIProxy.AppHost &
78
78
79
79
sleep 30
80
80
81
- dotnet test ./test/AzureOpenAIProxy.PlaygroundApp.Tests --no-build --logger "trx" --collect:"XPlat Code Coverage"
81
+ - name : Run integration tests
82
+ shell : bash
83
+ run : |
84
+ dotnet test ./test/AzureOpenAIProxy.PlaygroundApp.Tests -c Release --no-build --logger "trx" --collect:"XPlat Code Coverage"
82
85
83
86
- name : Create openapi.json
84
87
shell : pwsh
Original file line number Diff line number Diff line change @@ -85,13 +85,16 @@ jobs:
85
85
dotnet test ./test/AzureOpenAIProxy.AppHost.Tests -c Release --no-build --logger "trx" --collect:"XPlat Code Coverage"
86
86
dotnet test ./test/AzureOpenAIProxy.ApiApp.Tests -c Release --no-build --logger "trx" --collect:"XPlat Code Coverage"
87
87
88
- - name : Run integration tests
88
+ - name : Run AzureOpenAIProxy.AppHost in background
89
89
shell : bash
90
90
run : |
91
91
dotnet run --project ./src/AzureOpenAIProxy.AppHost &
92
92
93
93
sleep 30
94
94
95
+ - name : Run integration tests
96
+ shell : bash
97
+ run : |
95
98
dotnet test ./test/AzureOpenAIProxy.PlaygroundApp.Tests -c Release --no-build --logger "trx" --collect:"XPlat Code Coverage"
96
99
97
100
- name : Create openapi.json
You can’t perform that action at this time.
0 commit comments