摘要:标记只能应用于测试,对fixtures没有影响。 在pytest.ini文件中注册marker标记 [pytest] markers = slow: marks tests as slow (deselect with '-m "not slow"') serial :冒号后面的都是可选描述 已注册
阅读全文
01 2021 档案
摘要:标记只能应用于测试,对fixtures没有影响。 在pytest.ini文件中注册marker标记 [pytest] markers = slow: marks tests as slow (deselect with '-m "not slow"') serial :冒号后面的都是可选描述 已注册
阅读全文
摘要:抓包 ### 一 在应用层抓包(http/https) 抓http 客户端与服务器之间为明文通信。 请随意抓包 抓https 客户端与服务器之间为加密通信。 那这加密通信的原理是什么? 先解释几个名词: 什么是加密 通过编程,用一段俗称密码的东西,通过某种算法跑一下,对要加密的明文内容进行重新编码,
阅读全文
|