Skip to content

Commit 69bb2a2

Browse files
committed
setup: Enable test verbose if --ro/rw-functional is passed
1 parent 6c78055 commit 69bb2a2

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,10 @@ def run(self):
120120
print()
121121

122122

123-
t = unittest.TextTestRunner(verbosity=1)
123+
verbosity = 1
124+
if self.ro_functional or self.rw_functional:
125+
verbosity = 2
126+
t = unittest.TextTestRunner(verbosity=verbosity)
124127

125128
result = t.run(tests)
126129

0 commit comments

Comments
 (0)