test is always verbose

This commit is contained in:
evilchili 2024-03-25 23:12:30 -07:00
parent f1c063fd77
commit 0f72e80f8e

View File

@ -70,7 +70,11 @@ class BuildTool:
return 0 return 0
def test(self, args) -> bool: def test(self, args) -> bool:
return self._exec("pytest", *args) old_v = self.verbose
self.verbose = True
returncode = self._exec("pytest", *args)
self.verbose = old_v
return returncode
def build(self) -> bool: def build(self) -> bool:
print("Formatting...") print("Formatting...")