05 2019 档案
摘要:进入不同语言版本的Python交互环境 py -2 py -3 pip 命令的执行 : py -2 -m pip install xxxx py -3 -m pip install nose 执行python文件 py -2 a.py py -3 a.py py2: print "hello" py
阅读全文
摘要:pytest框架 安装pytest pip install -U pytest 查看安装版本 pip show pytest pytest --version 先看官网的一个例子,这个例子告诉你pytest的执行规则: 新建一个test_sample.py文件,代码如下: def func(x):
阅读全文