pytest学习 一

网上有很多这样的资料,学起来还是比较简单,为了将学到的东西应用于工程化,参考这样的样板代码:

https://github.com/jeffmacdonald/pytest_test

将其下载到C:\work\python\pytest_test后尝试在命令行中运行:

py.test tests

如图,出错了,经典的Py.test No module named *

image

根据作者的提示,需要将当前目录加到PYTHONPATH环境变量中,因此通过命令行加入环境变量

set PYTHONPATH=C:/work/python/pytest_test

然后再运行py.test tests即可看到测试结果

image

 

image

 

image

当然,由于样板程序是针对python2的,因此需要将mymodule.py中的代码改为:print("Yep!")

才能测试通过

posted @ 2018-09-17 17:09  绿色的麦田  阅读(200)  评论(0编辑  收藏  举报