gpt4 book ai didi

python - 为什么 pytest 中的列表与控制台的输出不同?

转载 作者:太空宇宙 更新时间:2023-11-03 20:45:58 25 4
gpt4 key购买 nike

我正在编写 100 天的代码。其中一个项目是在所选项目上实现 pytest。我选择了之前的一个项目,该项目采用定义的汽车品牌和型号字典并将输出返回到各种问题。我已经为其中两个函数编写了单元测试,但它们失败了。

从控制台运行函数 get_all_jeeps() 的代码将返回:

Grand Cherokee, Cherokee, Trailhawk, Trackhawk

如果我使用以下代码运行 pytest:

def test_get_all_jeeps():
expected = 'Grand Cherokee, Cherokee, Trailhawk, Trackhawk'
actual = get_all_jeeps()
assert type(actual) == str
assert actual == expected

它失败了,因为 pytests 输出看起来像是正在排序。为什么要这么做?

E       AssertionError: assert 'Cherokee, Gr...wk, Trailhawk' == 'Grand Cherokee...wk, Trackhawk'
E - Cherokee, Grand Cherokee, Trackhawk, Trailhawk
E + Grand Cherokee, Cherokee, Trailhawk, Trackhawk

另一个测试是在从控制台运行时提供不同的输出。函数 get_first_model_each_manufacturer() 的控制台输出为:

['Falcon', 'Commodore', 'Maxima', 'Civic', 'Grand Cherokee']

除非它失败了 pytest:

    def test_get_first_model_each_manufacturer():
expected = ['Falcon', 'Commodore', 'Maxima', 'Civic', 'Grand Cherokee']
actual = get_first_model_each_manufacturer()
assert type(actual) == list
> assert actual == expected
E AssertionError: assert ['Fairlane', ...', 'Cherokee'] == ['Falcon', 'Co...and Cherokee']
E on index 0 diff: 'Fairlane' != 'Falcon'
E Use -v to get the full diff

元素“Fairlane”如何到达那里? pytest 有何不同之处?

这里 repo https://github.com/cadamei/100daysofcode/tree/master/days/10-12-pytest

所有函数都使用这个字典作为数据:

cars = {
'Ford': ['Falcon', 'Focus', 'Festiva', 'Fairlane'],
'Holden': ['Commodore', 'Captiva', 'Barina', 'Trailblazer'],
'Nissan': ['Maxima', 'Pulsar', '350Z', 'Navara'],
'Honda': ['Civic', 'Accord', 'Odyssey', 'Jazz'],
'Jeep': ['Grand Cherokee', 'Cherokee', 'Trailhawk', 'Trackhawk']

最佳答案

您的 cars.py 脚本正在修改列表,因为它在导入时正在运行 print(sort_car_models()),删除这些行或将它们放入 if __name__ == '__main__' 中:

要了解更多信息,请查看 What does if __name__ == "__main__": do?

关于python - 为什么 pytest 中的列表与控制台的输出不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56609791/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com