06 2021 档案

摘要:# mysql 查找某个表在哪个库 SELECT table_schema FROM information_schema.TABLES WHERE table_name = '表名' 例如:SELECT table_schema FROM information_schema.TABLES WHE 阅读全文
posted @ 2021-06-24 18:04 西西cc 阅读(2742) 评论(0) 推荐(0)
摘要:给标签设置text-align以及line-height属性 如果line-height不加important的话,就不会垂直居中,因为table自带的一些属性会影响我们设置的line-height <style> td, tr,th{ text-align: center; } td{ line- 阅读全文
posted @ 2021-06-22 18:05 西西cc 阅读(2595) 评论(0) 推荐(0)
摘要:sorted对一些可迭代对象进行排序 1.对列表进行排序 b = ['a','c','b'] sort_dict = sorted(b) print(sort_dict) # 按照倒叙排列 sort_dict = sorted(b,reverse=True) print(sort_dict) 2.对 阅读全文
posted @ 2021-06-09 15:55 西西cc 阅读(266) 评论(0) 推荐(0)
摘要:pytest测试函数标记 1.pytest.mark.{自定义标签},自定义一个mark标签 https://www.cnblogs.com/zhuxibo/p/13921581.html 2. 跳过用例:@pytest.mark.skip @pytest.mark.skipif 描述:skip和s 阅读全文
posted @ 2021-06-08 18:30 西西cc 阅读(811) 评论(1) 推荐(0)
摘要:https://blog.csdn.net/qq_41838901/article/details/100577141 @allure.severity 标记用例等级 https://blog.csdn.net/qq_38870503/article/details/110764171 https: 阅读全文
posted @ 2021-06-08 13:13 西西cc 阅读(319) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/jiahm/p/13865503.html 阅读全文
posted @ 2021-06-08 12:42 西西cc 阅读(68) 评论(0) 推荐(0)