Skip to content

Commit

Permalink
Adjust digit space and runs label
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Dec 18, 2023
1 parent 86ac03a commit 7850558
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/publish/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
digest_mime_type = 'application/gzip'
digest_encoding = 'base64'
digest_header = f'{digest_prefix}{digest_mime_type};{digest_encoding},'
digit_space = '  '
digit_space = ''
punctuation_space = ' '

comment_mode_off = 'off'
Expand Down Expand Up @@ -637,7 +637,7 @@ def get_long_summary_with_runs_md(stats: UnitTestRunResultsOrDeltaResults,
runs_error=as_stat_number(stats.runs_error, error_digits, error_delta_digits, test_errors_label_md)
) if get_magnitude(stats.runs_error) else ''
runs_line = '{runs} {runs_succ} {runs_skip} {runs_fail}{runs_error_part}\n'.format(
runs=as_stat_number(stats.runs, files_digits, files_delta_digits, 'runs'),
runs=as_stat_number(stats.runs, files_digits, files_delta_digits, 'runs'),
runs_succ=as_stat_number(stats.runs_succ, success_digits, success_delta_digits, passed_tests_label_md),
runs_skip=as_stat_number(stats.runs_skip, skip_digits, skip_delta_digits, skipped_tests_label_md),
runs_fail=as_stat_number(stats.runs_fail, fail_digits, fail_delta_digits, failed_tests_label_md),
Expand Down

0 comments on commit 7850558

Please sign in to comment.