上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
  2022年4月25日
摘要: 选择在centos 上安装jdk和tomcat来搭建Jenkins 1、jdk安装 查看有没有java环境:rpm -qa | grep java 如果没有java环境的话,接着就去查找java-1.8.0.的可以使用的安装包 安装java所有文件:yum -y install java-1.8.0 阅读全文
posted @ 2022-04-25 12:29 peijiao 阅读(361) 评论(0) 推荐(0) 编辑
  2022年4月23日
摘要: 一、pycharm中安装下载allure:pip install allure-pytest、或者设置里面添加allure-pytest搜索安装 二、电脑中配置allure系统环境变量: allure是一个命令行工具,需要去github上下载最新版https://github.com/allure- 阅读全文
posted @ 2022-04-23 21:02 peijiao 阅读(335) 评论(0) 推荐(0) 编辑
  2022年4月7日
摘要: api目录封装所有的接口 testcases目录写所有的测试用例。conftest全局登录前置操作 data目录测试数据 common或者utils目录、存放公共模块比如读取yml文件、连接数据库、所有的接口项目公用的 pytest.ini配置文件 conftest整个项目全局控制文件 report 阅读全文
posted @ 2022-04-07 10:28 peijiao 阅读(269) 评论(0) 推荐(0) 编辑
  2022年3月27日
摘要: 系统环境准备: docker 运行在centos7上,要去系统为64位、系统内核版本为3.10以上 1.查看系统版本:cat/etc/redhat-release 2.查看系统内核版本:uname -a docker 安装: 1.安装依赖包:yum install -y yum-utils devi 阅读全文
posted @ 2022-03-27 10:13 peijiao 阅读(511) 评论(0) 推荐(0) 编辑
  2022年3月20日
摘要: 在pycharm中点击下方终端按钮-跳出当前文件路径 cd 文件名 :可指定到某个文件模块,例如 cd 到12ke dir 可查看当前模块的所有文件 指定执行test_a文件,命令:pytest test_a.py 指定执行test_a文件列出详细信息,命令:pytest test_a.py -v 阅读全文
posted @ 2022-03-20 15:42 peijiao 阅读(1528) 评论(0) 推荐(0) 编辑
摘要: a = [1, -2, 3, -4, 9, 8]print(len(a)) # 求列表长度print(sum(a)) # 求列表和print(sorted(a)) # 从小到大排序 阅读全文
posted @ 2022-03-20 09:09 peijiao 阅读(133) 评论(0) 推荐(0) 编辑
  2022年3月7日
摘要: 安装好SDK 环境变量配置好 安装模拟器 模拟器设置开发者模式 开发者模式中设置允许USB调试 找到电脑版模拟器的安装路径,我这里以夜神模拟器为主,找到bin目录使用cmd运行nox_adb.exe connect 127.0.0.1:62001(62001为模拟器对应的端口号) 再次输入:adb 阅读全文
posted @ 2022-03-07 18:37 peijiao 阅读(263) 评论(0) 推荐(0) 编辑
  2022年3月3日
摘要: 1、创建指定的用户组admin,groupadd admin 指定的用户harry属于该组。useradd harry -G admin -G 候选组 2、给harry设置指定的密码:echo "123456" |passwd --stdin harry 3、指定用户harry2不可登录的shell 阅读全文
posted @ 2022-03-03 22:09 peijiao 阅读(324) 评论(0) 推荐(0) 编辑
  2022年3月1日
摘要: 正则取值不要怕,re.findall走天下知道前后取中间,遇到特殊字符加转义\需要取值部分(.+?)从第一个字符开始用^, 取到结尾用$import requestsimport reurl = "http://49.xxx.xx.xx:8888/api/test/"r = requests.get 阅读全文
posted @ 2022-03-01 22:09 peijiao 阅读(180) 评论(0) 推荐(0) 编辑
  2022年2月23日
摘要: """找出单词 “world” 在 字符串"Hello, world" 中出现的位置,找不到返回-1从下标0开始索引 str.index()"""a = "Hello, world"print(a.index("w"))print(a.index("world"))print(a.index("e" 阅读全文
posted @ 2022-02-23 22:06 peijiao 阅读(317) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页