File tree Expand file tree Collapse file tree 2 files changed +466
-3
lines changed Expand file tree Collapse file tree 2 files changed +466
-3
lines changed Original file line number Diff line number Diff line change @@ -51,12 +51,13 @@ jobs:
51
51
npm run test.unit
52
52
53
53
table-server :
54
- name : Table Server Tests
54
+ name : Table Server Tests (Group ${{ matrix.test-group }})
55
55
runs-on : ubuntu-latest
56
56
strategy :
57
57
fail-fast : false
58
58
matrix :
59
59
python-version : ["3.12"] # Specify Python versions
60
+ test-group : ["1", "2", "3"]
60
61
61
62
steps :
62
63
- name : Checkout repository
@@ -134,7 +135,9 @@ jobs:
134
135
cache : ' pip'
135
136
136
137
- name : Install Python dependencies
137
- run : pip install -e .[ci,dev,testing]
138
+ run : |
139
+ pip install -e .[ci,dev,testing]
140
+ pip install pytest-split
138
141
139
142
- name : Build
140
143
run : |
@@ -143,4 +146,4 @@ jobs:
143
146
- name : Run Table Server Tests
144
147
run : |
145
148
cd components/dash-table
146
- pytest --nopercyfinalize --headless
149
+ pytest --nopercyfinalize --headless --splits 3 --group ${{ matrix.test-group }}
You can’t perform that action at this time.
0 commit comments