pytest-文件名类名方法名执行部分用例
pytest test_class_01.py 执行文件名
pytest -v -s test_class_01.py 执行文件名
pytest -v test_class_01.py::TestClass 执行类名
pytest -v test_class_01.py::TestClass::test_one执行方法名
pytest -v -s test_mark.py -k test_add 只执行这个方法
pytest -v -s test_mark.py -k "test_class and add" 执行这个类并且带add的