Skip to content

Commit

Permalink
ci: fix path & add log
Browse files Browse the repository at this point in the history
  • Loading branch information
Geun-Oh committed Sep 10, 2024
1 parent 5708709 commit fae3027
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/testScheduler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
agent: [1, 2] # 5개의 에이전트
include:
- agent: 1
tests: "../internal/service/storage ../internal/service/vpc" # 1번 에이전트가 순차적으로 실행할 테스트 리스트
tests: "./internal/service/objectstorage ./internal/service/vpc" # 1번 에이전트가 순차적으로 실행할 테스트 리스트
- agent: 2
tests: "../internal/service/server ../internal/service/redis" # 2번 에이전트가 실행할 테스트
tests: "./internal/service/server ./internal/service/redis" # 2번 에이전트가 실행할 테스트
# - agent: 3
# tests: "TestIndependentSuite3 TestIndependentSuite4" # 3번 에이전트가 실행할 테스트
# - agent: 4
Expand Down Expand Up @@ -54,6 +54,7 @@ jobs:
echo "Running tests on agent ${{ matrix.agent }}"
for test in ${{ matrix.tests }}; do
echo $PWD
echo $ls
echo "$test"
go test -v "$test"
done
Expand Down

0 comments on commit fae3027

Please sign in to comment.