执行pytest几种方式
方式一:
在terminal页通过 python -m pytest xxx.py 执行脚本
方式二:
在命令行窗口执行,如:pytest -s test_game.py -m=abc 注意:m=abc为test_game.py中定义的方法
方法三:
在python代码本身里执行,同时需要
1、把命令写到main语句块中 2、在pytest后面加上.main 3、把参数、文件名称用引号引起来
如:pytest.main(["-s","test_game.py","-m=abc"])