Python subprocess: 调用命令行程序
参考文档:The subprocess Module: Wrapping Programs With Pyth… Read More »
参考文档:The subprocess Module: Wrapping Programs With Pyth… Read More »
pytest-mock是pytest的插件,提供了mocker fixture,解决无法通过装饰器使用unit… Read More »
本文翻译自:Understanding the Python Mock Object Library 测试用于… Read More »
用@pytest.fixture装饰的函数就是fixture,该函数名可以当做测试方法的参数。执行测试方法时,… Read More »
写单元测试时,经常需要写些文件,进行对比;或者提前生成文件,用于读入测试。要求是:单元测试执行完后,自动清理这… Read More »
pathlib是一个面向对象的文件系统路径,并且集成了文件的读写能力。只要使用 pathlib.Path 对象… Read More »
Python typing模块是3.5引入的,Python解释器没有强制要求添加类型,类型注解只是为了给typ… Read More »
1. 运算类 abs(X) 返回一个数的绝对值 min, max(iterable, key=Non… Read More »
1. 安装python 去官网上下载需要的版本,由于历史代码,需要安装python2.7版本。 Python … Read More »
命令名称 操作系统 特点 os.system Window & linux 返回0正确,1错误 os.… Read More »