2023年9月21日
摘要: PS C:\Users\xxxx> wsl -vWSL 版本: 2.0.0.0内核版本: 5.15.123.1-1WSLg 版本: 1.0.57MSRDC 版本: 1.2.4485Direct3D 版本: 1.608.2-61064218DXCore 版本: 10.0.25880.1000-2306 阅读全文
posted @ 2023-09-21 15:46 秋雨的蝴蝶 阅读(178) 评论(0) 推荐(0) 编辑
  2021年10月31日
摘要: 1.安装pytest命令行或者终端中输入 pip install pytest 2.安装allure-pytest命令行或者终端中输入 pip install allure-pytest 3.安装allurehttps://github.com/allure-framework/allure2/re 阅读全文
posted @ 2021-10-31 23:22 秋雨的蝴蝶 阅读(79) 评论(0) 推荐(0) 编辑
  2021年8月1日
摘要: 问题:docker pserror during connect: In the default daemon configuration on Windows, the docker client must be run with elevated privileges to connect.: 阅读全文
posted @ 2021-08-01 20:39 秋雨的蝴蝶 阅读(10382) 评论(1) 推荐(1) 编辑
  2020年11月10日
摘要: docker 中 centos6.8 /etc/rc.d/init.d/functions: No such file or directory 错误,解决 rpm -qf /etc/init.d/functions 查找到 [xx@ ~]$ rpm -qf /etc/init.d/function 阅读全文
posted @ 2020-11-10 17:32 秋雨的蝴蝶 阅读(948) 评论(0) 推荐(0) 编辑
  2020年7月29日
摘要: 1.C:\Program Files\TAP-Windows\bin 安装目录下 2.以管理员权限运行 3.addtap.bat 阅读全文
posted @ 2020-07-29 21:48 秋雨的蝴蝶 阅读(4615) 评论(1) 推荐(0) 编辑
  2020年6月5日
摘要: DNS服务器named.ca详解 域名分级:www.baidu.com.www #主机baidu #次级域名com #顶级域名. #根域名 /var/named/named.ca$TTL 86400. IN SOA c14083fc9f07. v.163.com. ( #授权信息开始:"."根 #" 阅读全文
posted @ 2020-06-05 12:38 秋雨的蝴蝶 阅读(1215) 评论(0) 推荐(0) 编辑
  2020年5月26日
摘要: assertEqual(a,b) a==bassertNotEqual(a,b) a!=bassertTrue(x) bool(x) is TrueassertFalse(x) bool(x) is FalseasseertIs(a,b) a is bassertIsNot(a,b) a is no 阅读全文
posted @ 2020-05-26 12:50 秋雨的蝴蝶 阅读(310) 评论(0) 推荐(0) 编辑
  2020年5月21日
摘要: AttributeError 试图访问一个对象没有的树形,比如foo.x,但是foo没有属性xIOError 输入/输出异常;基本上是无法打开文件ImportError 无法引入模块或包;基本上是路径问题或名称错误IndentationError 语法错误(的子类) ;代码没有正确对齐IndexEr 阅读全文
posted @ 2020-05-21 14:45 秋雨的蝴蝶 阅读(168) 评论(0) 推荐(0) 编辑
  2020年5月20日
摘要: class Foo: passf=Foo()print(type(f1)) #f1是通过Foo类实例化的对象print(type(Foo)) #Foo是通过type类实例化的对象print(' >')class Foo1: x=1 def __init__(self,name,age): self. 阅读全文
posted @ 2020-05-20 01:50 秋雨的蝴蝶 阅读(138) 评论(0) 推荐(0) 编辑
摘要: #第一种方式:# class Foo:# @property# def AAA(self):# print("get")## @AAA.setter# def AAA(self,value):# print('set',value)## @AAA.deleter# def AAA(self):# p 阅读全文
posted @ 2020-05-20 01:25 秋雨的蝴蝶 阅读(161) 评论(0) 推荐(0) 编辑