Skip to content

Commit

Permalink
refs gurock#241: adding test for junit glob pattern.
Browse files Browse the repository at this point in the history
  • Loading branch information
PierrePaul committed Jun 27, 2024
1 parent 7c21c5b commit 2cebd8e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_junit_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ class TestJunitParser:
Path(__file__).parent / "test_data/XML/root.xml",
Path(__file__).parent / "test_data/json/root.json",
),
(
Path(__file__).parent / "test_data/XML/ro*t.xml",
Path(__file__).parent / "test_data/json/root.json",
),
(
Path(__file__).parent / "test_data/XML/required_only.xml",
Path(__file__).parent / "test_data/json/required_only.json",
Expand All @@ -37,6 +41,7 @@ class TestJunitParser:
ids=[
"XML without testsuites root",
"XML with testsuites root",
"XML with testsuites root, using a glob pattern",
"XML with no data",
],
)
Expand Down

0 comments on commit 2cebd8e

Please sign in to comment.