【测试】【Debug】pytest运行后print没有输出

python 复制代码
import pytest
def test_good():
    for i in range(1000):
        print(i)

def test_bad():
    print('this should fail!')
    assert False

比如上述程序,运行之后只能看到输出了'this should fail!';但是debug版的测试运行后又能看到test_good函数中的输出。

这是为什么呢?

  1. pytest自动会capture通过的那些测试用例运行中所print出来的output;而failed的那些测试用例则会打印其中运行过的print的输出。
  2. 如果想要获取全部的输出:
    在终端中运行下面其中一行即可 这两种都可以
shell 复制代码
pytest name.py --capture=no     # show print statements in console

pytest name.py -s               # equivalent to previous command
相关推荐
爱学测试的雨果1 天前
分布式测试插件 pytest-xdist 使用详解
分布式·pytest
七灵微3 天前
【测试】Pytest
pytest
钱钱钱端3 天前
Pytest参数详解 — 基于命令行模式!
自动化测试·软件测试·python·jmeter·职场和发展·pytest·压力测试
blues_C4 天前
Pytest-Bdd vs Behave:选择最适合的 Python BDD 框架
自动化测试·python·pytest·测试框架·bdd
天天要nx4 天前
D101【python 接口自动化学习】- pytest进阶之fixture用法
python·pytest
大霞上仙4 天前
pytest入门五:命令行参数
pytest
blues_C6 天前
Pytest-Bdd-Playwright 系列教程(17):标签管理(Tags)
自动化测试·pytest·bdd·tags
大霞上仙6 天前
pytest入门十:配置文件
pytest
大霞上仙6 天前
pytest入门九:feature
pytest
天天要nx6 天前
D99【python 接口自动化学习】- pytest进阶之fixture用法
python·pytest