Skip to content

Commit

Permalink
More parsing debug
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Aug 16, 2022
1 parent 33fca70 commit 808ad2b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/publish_test_results.py
Expand Up @@ -100,6 +100,8 @@ def parse_files(settings: Settings, gha: GithubAction) -> ParsedUnitTestResultsW

elems = []

logger.info('parsing files')

# parse files, log the progress
# https://github.com/EnricoMi/publish-unit-test-result-action/issues/304
with progress_logger(items=len(junit_files + nunit_files + xunit_files + trx_files),
Expand All @@ -120,6 +122,8 @@ def parse_files(settings: Settings, gha: GithubAction) -> ParsedUnitTestResultsW
from publish.trx import parse_trx_files
elems.extend(parse_trx_files(trx_files, progress))

logger.info(elems)

# get the test results
return process_junit_xml_elems(elems, settings.time_factor).with_commit(settings.commit)

Expand Down

0 comments on commit 808ad2b

Please sign in to comment.