本文共 450 字,大约阅读时间需要 1 分钟。
python的单元测试框架 nose的安装
采用easy_install的方式安装nose 1、先安装easy_install easy_install 方便python 安装第三方扩展包的工具 Easy Install 是一个Python的模块(easy_install),跟 setuptools 绑定在一起,提供自动的程序下载、编译、安装和管理 Python 的包 1)先下载easy_install的安装包 2)python setup.py install 2、安装nose 在命令行下输入:easy_install nose 回车 就自动安装了 nosetests *.py 就自动运行当前文件下的testcase了 备注:nosetests 命令就是执行case的。 它会自动查找当前目录下包含“Test”字样的目录和文件(文件里的python函数也已Test开头),然后执行,返回case执行成功与否。最新内容请见作者的GitHub页:
转载地址:http://twiwl.baihongyu.com/