摘要:
摘要: UOS 系统自带的商店是有typora的但是我们在打开md文件的时候右击无法找到typora,原因我就不知道了也就不排查了,直接上解决办法 安装: typora提供了国内服务所以我们需要在国内官网进行下载和安装,打开浏览器输入:https://www.typoraio.cn/ 点击linux 阅读全文
摘要:
python a_script.py 2>&1 | tee a.log 阅读全文
摘要:
摘要:pipeline是参数化构架的,并且想在pipeline中sh命令中使用参数 代码块: pipeline{ parameters { string defaultValue: 'AMD-desktop', name: 'node_name' string defaultValue: 'test 阅读全文
摘要:
摘要:python需要动态的运行pipeline pipeline声明式代码: pipeline{ parameters { string defaultValue: 'AMD-desktop', name: 'node_name' /*参数化构建*/ } agent { node { label 阅读全文
摘要:
摘要:最近磁盘满了想删除一点东西无从下手,那我就先看看每个文件夹占用了多少G,但是命令又忘记了。。。。然后发现了这个网站:时不时 看一看 学一学 https://gnu-linux.readthedocs.io/zh/latest/Chapter01/00_du.html LInux是 UOS专业版 阅读全文
摘要:
摘要:我想在执行pipeline流水线时动态的选择执行机器,所以必须脚本中添加参数,并且引用他。目前在声明式语法中可以正常使用,在脚本式中此语法无法生效还没有找到解决问题的办法。 成果展示: pipeline{ parameters { string defaultValue: 'AMD-deskt 阅读全文
摘要:
终端运行: pytest -v test_desktop.py --alluredir reults 非终端运行: 在app_main.py中运行,然后在pycharm右击运行 if __name__ == '__main__': pytest.main(["test_desktop.py", '- 阅读全文
摘要:
安装jenkins插件 登录jenkins服务器进入插件管理安装:Allure Jenkins Plugin 创建item 构建后操作path选择 你执行allure server 指定的目录 比如:sudo allure serve reults/ 查看allure报告: 阅读全文
摘要:
依赖安装: # 安装allure-pytest pip3 install allure-pytest --index-url https://pypi.douban.com/simple # 请先卸载掉 pytest-allure-adaptor # 安装allure启动一个服务来读取报告 http 阅读全文
摘要:
依赖安装 # 安装pytest-html插件 pip3 install pytest-html # 执行命令生成报告 pytest --html=report.html # 指定到对应的文件夹中 pytest --html=report/report.html # 这里不要加 . 运行测试 test 阅读全文