上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
  2018年12月25日
摘要: 版本与版本之间迭代,总会发生接口的变化,而这些变化开发不会都告诉测试,测试需要把全部接口检查一遍,这样就降低了测试效率。 为了解决这个问题,结合公司实际项目进行了以下设计: 1、对比测试环境swagger接口与生产环境swagger接口信息 2、对比前端引用的接口与测试人员整理接口的差别 3、开发构 阅读全文
posted @ 2018-12-25 20:32 蜗牛也是妞 阅读(2725) 评论(2) 推荐(0)
  2018年12月12日
摘要: ant+jacoco+jenkins+HttpRunnerManager代码覆盖率统计平台搭建 实现思路通过jenkins构建,并使用HttpRunnerManager异步实现报告更新与展示。 现在整理一下我的实现流程: 一、创建jenkins节点并启动此节点 1、jenkins系统创建nodes节 阅读全文
posted @ 2018-12-12 10:36 蜗牛也是妞 阅读(1858) 评论(0) 推荐(2)
摘要: SonarQube代码质量管理 1、配置jdk和maven jenkins - 系统管理 - 全局工具配置 jdk安装: # which java# /usr/local/java/jdk1.8.0.191/bin/java maven安装: # which mvn# /var/tmp/maven/ 阅读全文
posted @ 2018-12-12 10:36 蜗牛也是妞 阅读(2739) 评论(0) 推荐(1)
  2018年10月23日
摘要: #安装:pip3 install requests#请求 import requests requests.get(url, params=None, **kwargs) #获取 requests.post(url, data=None, json=None, **kwargs) #新增 requests.put(url, data=None, **kwargs) ... 阅读全文
posted @ 2018-10-23 15:40 蜗牛也是妞 阅读(221) 评论(0) 推荐(0)
  2018年10月12日
摘要: Content-Type = multipart/form-data#上传文件 Rquest Payload WebKitFormBoundarymAyGmnyhpf3UBdec Content-Disposition: form-data; name="sysCode" S04 WebKitFor 阅读全文
posted @ 2018-10-12 10:14 蜗牛也是妞 阅读(4963) 评论(13) 推荐(1)
摘要: #安装 pip install ruamel.yaml import os from ruamel import yaml # 将字典写入到yaml my_dic = { 'name': '张三', 'sex': 'male', 'hobby': ['read','music'] } # 写入到yaml文件 with ope... 阅读全文
posted @ 2018-10-12 09:53 蜗牛也是妞 阅读(2179) 评论(0) 推荐(1)
  2018年8月17日
摘要: # 强行覆盖本地分支 git fetch --all git reset --hard origin/master git pull #linux git #centos7.4 #1 安装git yum install git #2 初始化: git init #3 设置用户名和邮箱 git config --global user.name '用户名' git config ... 阅读全文
posted @ 2018-08-17 16:10 蜗牛也是妞 阅读(199) 评论(0) 推荐(0)
  2018年8月10日
摘要: 安装:pip install python-gitlab import gitlabimport base64 # 登录 gl = gitlab.Gitlab('http://127.0.0.1', private_token='JVNSESs8EwWRx5yDxM5q') # 列出所有的项目 pr 阅读全文
posted @ 2018-08-10 14:13 蜗牛也是妞 阅读(1709) 评论(0) 推荐(0)
  2018年8月6日
摘要: /* 设置全局变量 */var jsonData =JSON.parse(responseBody); pm.globals.set("ruleCode", JsonData.data.ruleCode); /* 断言使用全局变量 */ role_code = pm.globals.get("rul 阅读全文
posted @ 2018-08-06 17:30 蜗牛也是妞 阅读(597) 评论(0) 推荐(1)
  2018年8月4日
摘要: def create_issue(self, summary, description, assignee, compoment, project, issuetype='Task', priority='Medium'): """ 创建提交bug :param project: 项目 :param 阅读全文
posted @ 2018-08-04 10:03 蜗牛也是妞 阅读(5694) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页