File tree Expand file tree Collapse file tree 2 files changed +28
-3
lines changed
Expand file tree Collapse file tree 2 files changed +28
-3
lines changed Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 3030
3131jobs :
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
You can’t perform that action at this time.
0 commit comments