Skip to content

Commit

Permalink
Remove top level name from parent_name #62
Browse files Browse the repository at this point in the history
  • Loading branch information
gnalh committed Jun 14, 2024
1 parent 875db10 commit b4b8fd1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,7 @@ pub async fn run_test_command(
}
};
for suite in junitxml.suites {
let parent_name = if junitxml.name.is_empty() {
suite.name
} else {
format!("{}/{}", junitxml.name, suite.name)
};
let parent_name = suite.name;
for case in suite.cases {
let failure = case.status.is_failure();
if failure {
Expand Down

0 comments on commit b4b8fd1

Please sign in to comment.