pytest main函数的例子
时间: 2023-10-21 21:04:03 浏览: 80
以下是一个简单的 pytest main 函数的例子:
```python
import pytest
def test_addition():
assert 1 + 1 == 2
if __name__ == '__main__':
pytest.main()
```
这个例子只有一个测试函数 `test_addition()`,它测试了一个简单的加法操作。在 main 函数中,使用 `pytest.main()` 来运行所有的测试函数,并输出测试结果。如果测试成功,将会输出:
```
============================= test session starts ==============================
platform linux -- Python 3.7.6, pytest-6.0.1, py-1.9.0, pluggy-0.13.1
rootdir: /home/user/pytest_example
collected 1 item
test_example.py . [100%]
============================== 1 passed in 0.01s ===============================
```
其中,'.' 表示测试通过。如果测试失败,则会输出相应的错误信息。
阅读全文