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 e485bba commit 49c42eeCopy full SHA for 49c42ee
tests/integration/utils/consolidate_results.py
@@ -11,7 +11,7 @@
11
import os
12
import re
13
import sys
14
-from datetime import datetime
+from datetime import UTC, datetime
15
16
from tests.integration.utils.format_costs import format_cost
17
@@ -54,7 +54,7 @@ def process_result_file(filepath):
54
55
def generate_report(results, trigger_text, commit_sha):
56
"""Generate the consolidated markdown report."""
57
- timestamp = datetime.utcnow().strftime("%Y-%m-%d %H:%M UTC")
+ timestamp = datetime.now(UTC).strftime("%Y-%m-%d %H:%M UTC")
58
59
# Calculate total cost
60
total_cost = sum(result.get("total_cost", 0.0) for result in results)
0 commit comments