Skip to content

Commit

Permalink
reduce chances of conflict process name in tests by specific test met…
Browse files Browse the repository at this point in the history
…hod name
  • Loading branch information
fmigneault committed Feb 15, 2024
1 parent 20a1b8a commit fa9b455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def _try_get_logs(self, status_url):
return ""

def fully_qualified_test_process_name(self, name=""):
name = fully_qualified_name(self) + (f"-{name}" if name else "")
name = fully_qualified_name(self) + "." + self._testMethodName + (f"-{name}" if name else "")
return name.replace(".", "-")

def monitor_job(self,
Expand Down

0 comments on commit fa9b455

Please sign in to comment.