Skip to content

Commit 953e988

Browse files
authored
Fix integration test failures #523 (#524)
* Update azure-dev-build-only.yml 오류재현 * Update azure-dev.yml 오류재현 * Update azure-dev.yml 병렬건수 제한 * Update github actions - dev-build, dev actions 수정 - LLMRequired와 그렇지 않은 것으로 단계 분리 * Update github actions - dev actions 수정, deploy step 각주처리 * Update github actions - dev actions -C Release 스위치 추가 * Update azure-dev.yml - 테스트용 각주 해제
1 parent 31192d3 commit 953e988

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,10 @@ jobs:
8787
dotnet test ./test/OpenChat.PlaygroundApp.Tests \
8888
--no-build --logger "trx" --collect:"XPlat Code Coverage" \
8989
--filter "Category=IntegrationTest & Category!=IgnoreGitHubActions & Category!=LLMRequired"
90+
91+
- name: Run LLMRequired integration tests
92+
shell: bash
93+
run: |
94+
dotnet test ./test/OpenChat.PlaygroundApp.Tests \
95+
--no-build --logger "trx" --collect:"XPlat Code Coverage" \
96+
--filter "Category=IntegrationTest & Category!=IgnoreGitHubActions & Category=LLMRequired"

.github/workflows/azure-dev.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ jobs:
9898
--no-build --logger "trx" --collect:"XPlat Code Coverage" \
9999
--filter "Category=IntegrationTest & Category!=IgnoreGitHubActions & Category!=LLMRequired"
100100
101+
- name: Run LLMRequired integration tests
102+
shell: bash
103+
run: |
104+
dotnet test ./test/OpenChat.PlaygroundApp.Tests -c Release \
105+
--no-build --logger "trx" --collect:"XPlat Code Coverage" \
106+
--filter "Category=IntegrationTest & Category!=IgnoreGitHubActions & Category=LLMRequired"
107+
101108
- name: Log in to the Container registry
102109
uses: docker/login-action@v3
103110
with:

0 commit comments

Comments
 (0)