我在包中有一个文件名中带有“test”,当我运行 pytest 时出现错误import file mismatch:imported module 'my_project.my_file_test' has this __file__ attribute: /my_project/src/my_project/build/lib/python2.7/site-packages/foo/my_file_test.pywhich is not the same as the test file we want to collect: /my_project/src/my_project/build/private/python2.7/lib/foo/my_file_test.pyHINT: remove __pycache__ / .pyc files and/or use a unique basename for your test file modules如果我从文件中删除“测试”,它可以正常工作,但不幸的是我无法更改它。所以问题是如何告诉pytest忽略这个文件?
3 回答
慕莱坞森
TA贡献1810条经验 获得超4个赞
所以最后很容易,我只需要在pytest.ini
文件中添加测试文件模式
python_files = test_*.py
所以 pytest 停止寻找test
名称末尾的文件,默认情况下它所做的。
添加回答
举报
0/150
提交
取消