Skip to content

Commit bba8a5a

Browse files
Only run util tests to avoid previous issue
1 parent edf0de7 commit bba8a5a

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Run Util Tests"
2+
runs-on: ubuntu-latest
3+
timeout-minutes: 3
4+
runs:
5+
using: "composite"
6+
steps:
7+
- name: Set up Python
8+
uses: actions/setup-python@v5
9+
with:
10+
python-version: '3.13'
11+
- name: Install dependencies
12+
shell: bash
13+
run: |
14+
python -m pip install --upgrade pip
15+
pip install -r requirements.txt
16+
- name: Run util tests
17+
shell: bash
18+
run: pytest -m "utils" --ignore=tests/
19+
- uses: actions/upload-artifact@v4
20+
if: ${{ !cancelled() }}
21+
with:
22+
name: result-output-utils
23+
path: test-results/
24+
retention-days: 3
25+

.github/workflows/stage-2-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ on:
3030

3131
jobs:
3232
run-tests:
33-
name: "Run Util & Example Tests"
33+
name: "Run Util Tests"
3434
runs-on: ubuntu-latest
3535
timeout-minutes: 3
3636
steps:
3737
- name: "Checkout code"
3838
uses: actions/checkout@v4
39-
- name: "Run Playwright Tests"
40-
uses: ./.github/actions/run-playwright-tests
39+
- name: "Run Util Tests"
40+
uses: ./.github/actions/run-util-tests

0 commit comments

Comments
 (0)