pytest接口测试轻松入门
通过Postman请求结果如下图:那我们怎么用pytest进行测试呢?在接口测试,我们要用到requests包,实现代码如下:import pytestimport allureimport requestsclass TestSimple(object): def TestWatcher(self): url = "http://wthrcdn.etouch.cn/weather_mini?city=成都" r = requests.get(