We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dab4fb commit c4f08c8Copy full SHA for c4f08c8
.github/workflows/test_python.yml
@@ -96,8 +96,23 @@ jobs:
96
with:
97
pattern: split-${{ matrix.python }}-*
98
merge-multiple: true
99
+ - uses: actions/setup-python@v5
100
+ with:
101
+ python-version: '3.13'
102
- name: Combine test durations
- run: jq -s add .test_durations_* > .test_durations
103
+ # Below line causes OOM
104
+ # run: jq -s add .test_durations_* > .test_durations
105
+ run: |
106
+ from glob import glob
107
+
108
+ contents = []
109
+ for fn in glob(".test_durations_*"):
110
+ with open(fn) as f:
111
+ contents.append(f.read().strip().strip("{}"))
112
+ with open(".test_durations", "w") as f:
113
+ f.write("{" + ",".join(contents) + "}")
114
+ shell: python
115
116
pass:
117
name: Pass testing Python
118
needs: [testpython, update_durations]
0 commit comments