12 2021 档案

摘要:pytest 内置和自定义marker 可以通过命令行查看所有marker,包括内置和自定义的 pytest --markers 内置marker包括usefixtures 、filterwarnings 、skip 、skipif 、xfail这5个。参数化的marker在pytest参数化中有介 阅读全文
posted @ 2021-12-24 17:30 michaelchengjl 阅读(397) 评论(0) 推荐(0) 编辑
摘要:python-ldap 简单试用 1. 安装python-ldap3 pip3 install ldap3 2. 调用 from ldap3 import Server, Connection, SAFE_SYNC server = Server('172.16.XXX.XXX') conn = C 阅读全文
posted @ 2021-12-24 15:21 michaelchengjl 阅读(356) 评论(0) 推荐(0) 编辑
摘要:pip包依赖关系可视化 https://blog.csdn.net/zzy979481894/article/details/112385122 阅读全文
posted @ 2021-12-16 20:45 michaelchengjl 阅读(110) 评论(0) 推荐(0) 编辑
摘要:intel AMD 平台架构 https://www.mydrivers.com/zhuanti/tianti/cpu/ https://blog.csdn.net/qq_27825451/article/details/89225571 https://jishuin.proginn.com/p/ 阅读全文
posted @ 2021-12-12 18:14 michaelchengjl 阅读(105) 评论(0) 推荐(0) 编辑
摘要:shell 将文件名读入数组 我想得到一个文件列表,然后将结果读入一个数组,其中每个数组元素对应一个文件名。 shopt -s nullglob array=(*) array2=(file*) array3=(dir/*) 如果没有匹配项,则nullglob选项会使数组为空。 以下将在当前目录中创 阅读全文
posted @ 2021-12-10 18:38 michaelchengjl 阅读(1600) 评论(0) 推荐(0) 编辑
摘要:pytest-命令行传入自定义的参数到测试文件中 conftest.py import pytest def pytest_addoption(parser): parser.addoption("--aa", action="store", default='', help="the input 阅读全文
posted @ 2021-12-10 15:21 michaelchengjl 阅读(455) 评论(0) 推荐(0) 编辑
摘要:使用minio搭建私有化对象存储服务 MinIO简介 MinIO 是一款基于Go语言的高性能对象存储服务,在Github上已有19K+Star。它采用了Apache License v2.0开源协议,非常适合于存储大容量非结构化的数据,例如图片、视频、日志文件、备份数据和容器/虚拟机镜像等。 本文将 阅读全文
posted @ 2021-12-07 14:31 michaelchengjl 阅读(606) 评论(0) 推荐(0) 编辑