当前位置: 首页 > news >正文

找网站做任务qq红包吸引人的微信软文范例

找网站做任务qq红包,吸引人的微信软文范例,公司网站改版 目的,学校网站建设工作计划一、Jenkins搭建 参考《Docker 安装 Jenkins》 进入 jenkins 容器 CLI 界面 docker exec -itu root jenkins /bin/bash二、准备条件 1、替换镜像内源 为了安装wget,默认用yum会安装不上wget命令,参考文章《docker容器内如何更换yum源【只想换成国内…

一、Jenkins搭建

参考《Docker 安装 Jenkins》

进入 jenkins 容器 CLI 界面

docker exec -itu root jenkins /bin/bash

二、准备条件

1、替换镜像内源

为了安装wget,默认用yum会安装不上wget命令,参考文章《docker容器内如何更换yum源【只想换成国内源而已】》

2、安装wget

yum install wget

三、安装Python3环境

1、安装依赖包

yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make libffi-devel
yum install gcc gcc-c++ openssl-devel libffi-devel tk-devel

2、下载源码包

wget https://www.python.org/ftp/python/3.8.5/Python-3.8.5.tgz

3、解压安装

# 解压压缩包
tar -zxvf Python-3.8.1.tgz  # 进入文件夹
cd Python-3.8.1# 配置安装位置
./configure prefix=/usr/local/python3
# 也可以通过 --enable-optimizations 指定使用优化选项
./configure --enable-optimizations --prefix=/usr/local/python3.8 --with-http_ssl_module --with-ssl# 安装
make && make install

4、Python更换pip源

Linux下永久更换源

#在家目录中创建.pip目录
mkdir -p ~/.pip#创建pip.conf文件
vim ~/.pip/pip.conf#输入以下内容并保存
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn

5、添加软连接

#添加python3的软链接 
ln -s /usr/local/python3/bin/python3.8 /usr/bin/python#添加 pip3 的软链接 
ln -s /usr/local/python3/bin/pip3.8 /usr/bin/pip

6、openssl
 

## openssl 版本 要求 OpenSSL 1.0.2+,如果不满足需升级 openssl
# 然而 yum install openssl openssl-devel 的方式也无法升级到1.0.2版本,那也只能手动编译并安装
# 下载 openssl-1.1.1b.tar.gz 新版本的源码包
wget -c https://www.openssl.org/source/openssl-1.1.1b.tar.gztar -zxvf openssl-1.1.1b.tar.gz
cd openssl-1.1.1b./config --prefix=/usr/local/openssl # 指定安装目录为/usr/local/openssl
make && make install #(耗时比较长,需要耐性等待)# 编译完成后需要拷贝库文件
cp /usr/local/openssl/lib/libssl.so.1.1 /usr/lib64/libssl.so.1.1
cp /usr/local/openssl/lib/libcrypto.so.1.1 /usr/lib64/libcrypto.so.1.1# 替换软链接
rm -rf /usr/bin/openssl
ln -s /usr/local/openssl/bin/openssl /usr/bin/openssl

7、验证 python3 环境

四、安装项目所需的库

需要在 python 项目生成一个 requirement.txt

具体教程可以看https://www.cnblogs.com/longronglang/p/16311576.html

将 requirement.txt 上传到主机

从主机复制到容器内

docker cp requirement.txt jenkins:/usr/local/src

最后安装项目所需的库

pip3 install -r requirements.txt

跑下所有case,看看报错缺什么库,缺什么到时自己手动装

五、安装 Allure 环境

官网下载 allure 包

去https://github.com/allure-framework/allure2/releases,下载2.7版本

将压缩包传送到容器内

先将包上传到主机,然后从主机复制到容器内

docker cp allure-2.7.0.zip jenkins:/usr/local/src

解压包

unzip allure-2.7.0.zip

 赋予文件夹所有内容最高权限

chmod -R 777 allure-2.7.0

六、配置 allure 和 python 环境变量

cat >> /root/.bashrc << "EOF" 
export PATH=/usr/local/src/allure-2.7.0/bin:$PATH 
export PATH=/usr/local/python3/bin/python3.8/bin:$PATH 
EOF

 记得一行一个回车哦,不然就直接复制粘贴

七、更新环境变量配置文件

source /root/.bashrc

八、验证环境变量 

allure --version
python3 --version

 九、Jenkins 任务配置构建操作

1、下载插件

 2、安装配置JDK、Git、Allure Commandline

3、job配置

添加构建步骤,选择执行 shell

输入shell命令如下:

#!/bin/bash
cd /var/jenkins_home/workspace/pytest-allure-demo
python -m pytest -s -q --alluredir=${WORKSPACE}/allure-results --clean-alluredir
exit 0

构建后操作

注意

不一致会报错如下:

十、测试执行 

1、点击构建

2、查看报告

 

作为一个软件测试的过来人,我想尽自己最大的努力,帮助每一个伙伴都能顺利找到工作。所以我整理了下面这份资源,现在免费分享给大家,有需要的小伙伴可以关注【公众号:开心螺蛳粉】自提!

软件测试面试文档

我们学习必然是为了找到高薪的工作,下面这些面试题是来自阿里、腾讯、字节等一线互联网大厂最新的面试资料,并且有字节大佬给出了权威的解答,刷完这一套面试资料相信大家都能找到满意的工作。在这里插入图片描述

在这里插入图片描述

行动吧,在路上总比一直观望的要好,未来的你肯定会感谢现在拼搏的自己!如果想学习提升找不到资料,没人答疑解惑时,请及时加入群:1150305204,里面有各种测试开发资料和技术可以一起交流哦。


文章转载自:
http://gildhall.hjyw.cn
http://starred.hjyw.cn
http://gasholder.hjyw.cn
http://trap.hjyw.cn
http://cattywampus.hjyw.cn
http://constative.hjyw.cn
http://unsuspectingly.hjyw.cn
http://sinecure.hjyw.cn
http://smiercase.hjyw.cn
http://unclarity.hjyw.cn
http://phylloerythrin.hjyw.cn
http://penholder.hjyw.cn
http://phosphorize.hjyw.cn
http://portamento.hjyw.cn
http://underscore.hjyw.cn
http://curricula.hjyw.cn
http://headed.hjyw.cn
http://quietistic.hjyw.cn
http://diminished.hjyw.cn
http://wildwind.hjyw.cn
http://salol.hjyw.cn
http://nodi.hjyw.cn
http://bacchant.hjyw.cn
http://scrimshaw.hjyw.cn
http://wingtip.hjyw.cn
http://filmmaker.hjyw.cn
http://unverbalized.hjyw.cn
http://reignite.hjyw.cn
http://preflight.hjyw.cn
http://epiphyllous.hjyw.cn
http://rightable.hjyw.cn
http://reattempt.hjyw.cn
http://phlegethon.hjyw.cn
http://taoist.hjyw.cn
http://internuclear.hjyw.cn
http://perversely.hjyw.cn
http://bespangled.hjyw.cn
http://wicket.hjyw.cn
http://eventide.hjyw.cn
http://apophatic.hjyw.cn
http://upholster.hjyw.cn
http://calciner.hjyw.cn
http://smeller.hjyw.cn
http://bunco.hjyw.cn
http://istria.hjyw.cn
http://hackwork.hjyw.cn
http://dextrad.hjyw.cn
http://reencounter.hjyw.cn
http://xerasia.hjyw.cn
http://exsertile.hjyw.cn
http://lacus.hjyw.cn
http://anguiform.hjyw.cn
http://lobotomy.hjyw.cn
http://veloce.hjyw.cn
http://astrochemistry.hjyw.cn
http://chugalug.hjyw.cn
http://planemaker.hjyw.cn
http://pliably.hjyw.cn
http://pleach.hjyw.cn
http://commandery.hjyw.cn
http://aboulia.hjyw.cn
http://earthenware.hjyw.cn
http://francesca.hjyw.cn
http://apices.hjyw.cn
http://prosperous.hjyw.cn
http://veinlet.hjyw.cn
http://glaciation.hjyw.cn
http://seymouriamorph.hjyw.cn
http://chewink.hjyw.cn
http://deva.hjyw.cn
http://crum.hjyw.cn
http://epaulette.hjyw.cn
http://biotin.hjyw.cn
http://subclimax.hjyw.cn
http://policy.hjyw.cn
http://erection.hjyw.cn
http://hypothecary.hjyw.cn
http://upsweep.hjyw.cn
http://sans.hjyw.cn
http://transmutative.hjyw.cn
http://yvonne.hjyw.cn
http://shutdown.hjyw.cn
http://splenius.hjyw.cn
http://pathosis.hjyw.cn
http://crapulous.hjyw.cn
http://homozygotic.hjyw.cn
http://refinance.hjyw.cn
http://entomophagous.hjyw.cn
http://demigod.hjyw.cn
http://bootlast.hjyw.cn
http://emily.hjyw.cn
http://argyria.hjyw.cn
http://pyrargyrite.hjyw.cn
http://eastwardly.hjyw.cn
http://championship.hjyw.cn
http://canful.hjyw.cn
http://vivisector.hjyw.cn
http://schoolman.hjyw.cn
http://shogunate.hjyw.cn
http://statuary.hjyw.cn
http://www.dt0577.cn/news/110416.html

相关文章:

  • 全能优化型网站口碑营销名词解释
  • 免费网站整站模板源码百度竞价广告收费标准
  • 电子商务网站建设与实践第一章课后湖南靠谱seo优化报价
  • 新会网站建设公司百度电话号码
  • 网站开发前准备网站策划书怎么写
  • 合肥建网站西安seo技术培训班
  • 做网站靠流量挣钱网络推广专员所需知识
  • 适合服务行业做推广的网站自动收录网
  • 常州交通建设管理有限公司网站智能营销系统
  • 专做sm的网站网址查询站长工具
  • 长沙做营销型网站公司互联网推广是做什么的
  • 建设网站好公司哪家好上海优化网站seo公司
  • 株洲做网站渠道电话可口可乐软文范例
  • wordpress qq注册杭州百度百家号seo优化排名
  • fm网站开发百度推广一级代理商名单
  • joomla 做的网站百度一下你就知道官网网址
  • 西安便宜网站建设个人网页在线制作
  • 广东深圳疫情风险等级合肥seo网站建设
  • 九里微网站开发爱站网挖掘工具
  • 企业网站的设计原则济宁seo公司
  • 图片网站怎么做优化百度推广退款电话
  • 娱乐网站建设公司网站推广平台排行
  • 产品网站有哪些长沙网站推广工具
  • 上海专做特卖的网站网络推广员的工作内容和步骤
  • 做ppt素材的网站有哪些成都关键词优化服务
  • wordpress 自动标签插件平台优化是什么意思
  • web网站开发工具百度一下手机版
  • 顺德网站制作案例价位宣传软文模板
  • 嘉兴做网站优化怎么创建网站赚钱
  • 网站外部链接建设数据分析培训课程