Showing file path also needs to respect verbosity

This commit is contained in:
Patrick Lannigan 2023-12-03 08:12:19 -05:00
parent 629f165045
commit 44bab5e0bc
No known key found for this signature in database
GPG Key ID: BBF5D9DED1E4AAF9
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ class TerminalReporter:
@property
def showfspath(self) -> bool:
if self._showfspath is None:
return self.verbosity >= 0
return self.config.get_verbosity(Config.VERBOSITY_TEST_CASES) >= 0
return self._showfspath
@showfspath.setter