Skip to content

Commit 04488d2

Browse files
committed
Add Python 3.13 to test report
1 parent a0453d7 commit 04488d2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

corpus_test/generate_report.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def report(results_dir: str, minifier_ref: str, minifier_sha: str, base_ref: str
315315
| Python Version | Valid Corpus Entries | Average Time | Minified Size | Larger than original | Recursion Error | Unstable Minification | Exception |
316316
|----------------|---------------------:|-------------:|--------------:|---------------------:|----------------:|----------------------:|----------:|'''
317317

318-
for python_version in ['2.7', '3.3', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']:
318+
for python_version in ['2.7', '3.3', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']:
319319
try:
320320
summary = result_summary(results_dir, python_version, minifier_sha)
321321
except FileNotFoundError:
@@ -358,11 +358,11 @@ def format_size_change_detail() -> str:
358358
)
359359

360360
if ENHANCED_REPORT:
361-
yield from report_larger_than_original(results_dir, ['3.12'], minifier_sha)
362-
yield from report_larger_than_base(results_dir, ['3.12'], minifier_sha, base_sha)
363-
yield from report_slowest(results_dir, ['3.12'], minifier_sha)
364-
yield from report_unstable(results_dir, ['2.7', '3.3', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'], minifier_sha)
365-
yield from report_exceptions(results_dir, ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'], minifier_sha)
361+
yield from report_larger_than_original(results_dir, ['3.13'], minifier_sha)
362+
yield from report_larger_than_base(results_dir, ['3.13'], minifier_sha, base_sha)
363+
yield from report_slowest(results_dir, ['3.13'], minifier_sha)
364+
yield from report_unstable(results_dir, ['2.7', '3.3', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'], minifier_sha)
365+
yield from report_exceptions(results_dir, ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'], minifier_sha)
366366

367367

368368
def main():

0 commit comments

Comments
 (0)