请给我一个pytest完整代码
时间: 2023-05-19 10:01:11 浏览: 68
Python自动化测试框架之pytest详解
5星 · 资源好评率100%
当然可以,以下是一个简单的pytest测试用例:
```
# test_sample.py
def inc(x):
return x + 1
def test_answer():
assert inc(3) == 4
```
在终端中运行 `pytest` 命令即可执行该测试用例。
阅读全文
Python自动化测试框架之pytest详解