Skip to content

Commit

Permalink
cli: add default value for suite_name
Browse files Browse the repository at this point in the history
  • Loading branch information
Cube707 committed Feb 10, 2025
1 parent be3bc6e commit 94530a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions junitparser/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from . import JUnitXml, version


def merge(paths, output, suite_name):
"""Merge XML report."""
def merge(paths, output, suite_name=""):
"""Merge XML reports."""
result = JUnitXml()
for path in paths:
result += JUnitXml.fromfile(path)
Expand Down

0 comments on commit 94530a4

Please sign in to comment.