Pycharm 内装 pytest,
Terminal内输入
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pytest #原命令pip install pytest,因为网速不好此处用清华网址的镜像
Pytest文件命名规范
- .py测试文件必须以 test_ 开头(或 _test 结尾)
- 测试方法必须以 test_ 开头
- 测试类必须以 Test_ 开头,并且不能有 init 方法
以 pytest 文件命名规范写完一个测试脚本如 test_one.py 想运行时,需要
Terminal内输入:pytest test_one.py
注:此时不能用pycharm自带的绿色小三角按钮运行,因为此时默认为unitest运行方式
若想将默认更改为pytest则如下图
标签:py,Terminal,pip,pytest,install,test From: https://www.cnblogs.com/w-c-y/p/17351108.html