How can I see normal print output created during pytest run?

后端 未结 11 2032
轮回少年
轮回少年 2020-12-12 10:30

Sometimes I want to just insert some print statements in my code, and see what gets printed out when I exercise it. My usual way to \"exercise\" it is with existing pytest t

11条回答
  •  半阙折子戏
    2020-12-12 10:43


    Try pytest -s -v test_login.py for more info in console.

    -v it's a short --verbose

    -s means 'disable all capturing'



提交回复
热议问题