Skip to content

Commit a3b6bc8

Browse files
committed
Fix GitHub Actions workflow: split agent_and_team_agent into separate test suites
1 parent 058cf1a commit a3b6bc8

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/main.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77
# any branch other than main, will use the test key
88
- test
9-
workflow_dispatch:
9+
workflow_dispatch:
1010

1111
jobs:
1212
setup-and-test:
@@ -31,7 +31,8 @@ jobs:
3131
'finetune_v2',
3232
'general_assets',
3333
'apikey',
34-
'agent_and_team_agent',
34+
'agent',
35+
'team_agent',
3536
]
3637
include:
3738
- test-suite: 'unit'
@@ -85,7 +86,7 @@ jobs:
8586
- test-suite: 'team_agent'
8687
path: 'tests/functional/team_agent'
8788
timeout: 45
88-
89+
8990
steps:
9091
- name: Checkout repository
9192
uses: actions/checkout@v4
@@ -95,7 +96,7 @@ jobs:
9596
with:
9697
python-version: "3.9"
9798
cache: 'pip'
98-
99+
99100
- name: Install dependencies
100101
run: |
101102
python -m pip install --upgrade pip
@@ -116,7 +117,7 @@ jobs:
116117
fi
117118
echo "SLACK_TOKEN=${{ secrets.SLACK_TOKEN }}" >> $GITHUB_ENV
118119
echo "HF_TOKEN=${{ secrets.HF_TOKEN }}" >> $GITHUB_ENV
119-
120+
120121
- name: Run Tests
121122
timeout-minutes: ${{ matrix.timeout }}
122123
run: python -m pytest ${{ matrix.path }}

0 commit comments

Comments
 (0)