Skip to content

Commit

Permalink
Increase partition count to 30
Browse files Browse the repository at this point in the history
  • Loading branch information
TheQuantumPhysicist committed Feb 5, 2024
1 parent d869bd1 commit f701246
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: Code Coverage

env:
# We partition coverage tests into multiple parts to avoid filling diskspace in a single runner
PARTITIONS_COUNT: 20
PARTITIONS_COUNT: 30

jobs:
coverage:
Expand All @@ -20,7 +20,38 @@ jobs:
matrix:
# This range spans from `0` to `PARTITIONS_COUNT - 1`, where `PARTITIONS_COUNT` is the number of partitions (defined in env var above)
partition:
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
[
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
]

steps:
- name: Install dependencies
Expand Down

0 comments on commit f701246

Please sign in to comment.