db_info = {'user': 'root', 'password': '123456', 'host': 'localhost', 'port': 3306, 'database': 'test' }'mysql+pymysql://%(user)s:%(password)s@%(host) ...
分类:
数据库 时间:
2021-05-24 01:23:49
阅读次数:
0
1。 调整用例执行顺序 默认按名称顺序执行。安装pip install pytest-ordering, 在测试方法上加装饰器@pytest.mark.last @pytest.mark.run(order=1) 2。遇到错误停止执行 -x 参数 pytest -x -v -s test_01.py ...
分类:
其他好文 时间:
2021-05-24 00:48:43
阅读次数:
0
pytest参数化与数据驱动实现—— 1. 使用@pytest.mark.parametrize进行参数化和数据驱动 import pytest @pytest.mark.parametrize("test_input, expected", [('3+5', 8), ('1+5', 6), ('3 ...
分类:
其他好文 时间:
2021-05-24 00:42:51
阅读次数:
0
package test; public class BubbleSort { public void bubble(Integer[] array,int from,int end) { for(int k=1;k<end-from+1;k++) { for(int i=end-from;i>=k ...
分类:
编程语言 时间:
2021-05-24 00:31:25
阅读次数:
0
引号和转义 Bash 只有一种数据类型,就是字符串。不管用户输入什么数据,Bash 都视为字符串。因此,字符串相关的引号和转义,对 Bash 来说就非常重要。 转义 某些字符在 Bash 里面有特殊含义(比如$、&、*)。 $ echo $date $ 上面例子中,输出$date不会有任何结果,因为 ...
分类:
系统相关 时间:
2021-05-24 00:19:28
阅读次数:
0
安装consul 下载地址 https://releases.hashicorp.com/consul/,将下载的consul.exe 文件目录添加到系统环境中,然后执行 consul agent -dev 启动,默认监听8500端口,可以访问 http://127.0.0.1:8500/ 进行查看 ...
分类:
其他好文 时间:
2021-05-24 00:13:10
阅读次数:
0
AOE寻找关键路径的核心思想就是寻找事件和活动的最早时间和最晚时间(earlist time ,latest time),节点(事件)和边(活动)的最早、最晚时间分别缩写为etv,ltv,ete,lte(编程时候,也有用ve,vl,ee,el代替的)。关于最短时间最晚时间的取值,经常会有误解,我们不 ...
分类:
其他好文 时间:
2021-05-24 00:05:11
阅读次数:
0
模块的概念 标准模块格式 # !/usr/bin/env python3 # -*- coding: utf-8 -*- 'a test module' __author__ = 'name' 安装第三方模块 pip:是python包管理工具。 安装第三方模块:使用包管理工具 pip pip的安装( ...
分类:
编程语言 时间:
2021-05-24 00:01:39
阅读次数:
0
一、整体目录: 二、文件夹作用: action: 用于封装调用 case: 用于编写测试用例 common:用于放置公共部分 configs:用于存放测试数据(比如域名、账号等) data:用于存放测试用例, otc_api:用于封装接口请求方式 mian.py:运行函数 pytest.ini: 三 ...
分类:
其他好文 时间:
2021-05-23 23:56:36
阅读次数:
0
command+shift+P,然后键入:go:install/update tools,将所有 16 个插件都勾选上,然后点击 OK 即开始安装 go env -w GOPROXY=https://goproxy.io go切换proxy中国代理 GO111MODULEGO111MODULE 有三 ...
分类:
编程语言 时间:
2021-05-23 23:30:42
阅读次数:
0