一、命名规范、setup_method
1、文件名称,要以"test_xx"开头
2、类名要以"Test_xx""开头
3、方法名要以"test_xx""开头
4、setup_method 每个方法都会执行一遍setup_method 里的内容
5、命令 -s 会把print 的内容打印出来
6、执行脚本的命令:python3 -m pytest -s xx.py 或者 pytest -s xx.py
标签:setup,py,xx,pytest,test,method From: https://www.cnblogs.com/zhang-dan/p/17736265.html