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 3130fd7 commit ffdb0c1Copy full SHA for ffdb0c1
.github/workflows/combine_durations.py
@@ -15,13 +15,7 @@
15
16
for path in split_paths:
17
durations = json.loads(path.read_text())
18
- new_durations.update(
19
- {
20
- key: duration
21
- for key, duration in durations.items()
22
- if previous_durations[key] != duration
23
- }
24
- )
+ new_durations.update(durations)
25
26
durations_path.parent.mkdir(parents=True, exist_ok=True)
27
durations_path.write_text(json.dumps(new_durations))
0 commit comments