Guest User

Untitled

a guest
Dec 16th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. def pytest_terminal_summary(terminalreporter):
  2. config = terminalreporter.config
  3. if not test_cases or config.option.verbose < 1:
  4. return
  5. tw = terminalreporter._tw
  6. tw.sep('-', 'this line will not show up with -n 1')
  7. tw.line('this line should show up')
Add Comment
Please, Sign In to add comment