在不同级别上重写fixture
在大型的test suite中,可能需要重写一个全局的fixture。
在文件夹层级上重写fixture(conftest)
Example:
目录结构
在tests/conftest.py的内容为
在tests/test_name.py的内容为
tests/newfunction/conftest.py
tests/newfunction/test_newfunctionname.py
执行结果
由上例可以看出,在newfunction目录下的conftest.py中的fixture重写了tests目录下conftest.py中的fixture
用module级别的fixture重写conftest.py中的fixture
Example:
目录结构
在tests/conftest.py中的fixture为
test_name module的定义
运行结果
由结果可以看出 test_name.py模块中的同名的fixture替代了conftest.py中的fixture
使用直接测试参数覆盖fixture
参数化方法时,参数化的参数名称与fixture的名字一样是,fixture将被参数化覆盖
Example
结果