摘要: 参考链接来自:https://blog.csdn.net/qq_35535690/article/details/81976032 首先到官方下载官网的hadoop2.7.7,链接如下https://mirrors.tuna.tsinghua.edu.cn/apache/hadoop/common/ 阅读全文
posted @ 2021-02-19 13:51 Camillezxl 阅读(1086) 评论(0) 推荐(0) 编辑
摘要: 下载hadoop: http://mirrors.tuna.tsinghua.edu.cn/apache/hadoop/common 点击下面链接进行下载 然后进行解压 如果解压出现下面的情况 则用管理员身份进行解压,cd到压缩包所在文件夹下,执行下面的命令 start winrar x -y ha 阅读全文
posted @ 2021-02-19 09:58 Camillezxl 阅读(148) 评论(0) 推荐(0) 编辑
摘要: #添加Excel用例标题颜色 workbook = open_workbook(filepath) # 打开Excel工作簿 new_workbook = copy(workbook) # 复制Excel工作簿 new_sheet = new_workbook.get_sheet(index) pa 阅读全文
posted @ 2021-01-27 11:11 Camillezxl 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 持续集成涉及到git代码,新建机器,新建job,配置运行 一、注册GitHub账号 1.先注册一个GitHub账号,注册地址:https://github.com/ 2.登录后开启你的旅程 3.创建一个repository name,输入框随便取一个名字(不要用中文!!!!!!) 4.点击creat 阅读全文
posted @ 2021-01-21 14:31 Camillezxl 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 个人总结:我本地用的是Windows10系统 持续集成核心步骤:1.环境配置;2.代码上传至git;3.构建持续集成 一、环境配置(jdk环境、Tomcat环境、Jenkins环境) 1.jdk下载:https://www.oracle.com/java/technologies/javase-do 阅读全文
posted @ 2021-01-21 13:44 Camillezxl 阅读(73) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 import ddt,os,unittest,warnings from common.read_excel import ExcelUtil from common.test_result import TestResult from xlrd import open_ 阅读全文
posted @ 2021-01-19 17:09 Camillezxl 阅读(394) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 import unittest import os class CompareTestCase(unittest.TestCase): '''对比测试结果与预期结果是否一致''' def compare_data(self,case_name,actual_list,ac 阅读全文
posted @ 2021-01-07 10:02 Camillezxl 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1.封装read_excel方法 #coding:utf-8 # coding:utf-8 import xlrd,os class ExcelUtil(): def __init__(self, excelPath, sheetName): self.data = xlrd.open_workbo 阅读全文
posted @ 2021-01-06 16:03 Camillezxl 阅读(131) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 import requests,unittest class EnvironmentVariableNew(unittest.TestCase): '''设置环境变量''' def setUp(self): pass def tearDown(self): self.s. 阅读全文
posted @ 2021-01-06 16:00 Camillezxl 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 1.postman下载:百度搜索Postman,从其官网下载即可:https://www.postman.com/ 2.postman使用基础这里不再累赘,请参考:https://www.cnblogs.com/cocomoly/p/11725219.html 3.在postman左侧创建好需要测试 阅读全文
posted @ 2020-12-31 09:08 Camillezxl 阅读(360) 评论(1) 推荐(0) 编辑