Skip to content

Commit

Permalink
Tests: Increase verbosity to display _names_ of individual test cases
Browse files Browse the repository at this point in the history
It was a bit unclear before. `--verbose` did not work, `-vvv` is needed.
  • Loading branch information
amotl committed Oct 13, 2022
1 parent ea9ccad commit a2ab48a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bin/test
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ base = os.path.dirname(base)
sys.argv[0] = os.path.abspath(sys.argv[0])

if __name__ == '__main__':
sys.exit(zope.testrunner.run((['--auto-color', '--verbose']) + [
'--test-path', join(base, 'src'),
]))
sys.exit(zope.testrunner.run([
'-vvv', '--auto-color',
'--test-path', join(base, 'src')],
))

0 comments on commit a2ab48a

Please sign in to comment.