vscode pytest使用
时间: 2023-10-16 13:12:41 浏览: 216
vscode测试版
首先,你需要安装Python和pytest。然后,你可以在VS Code中创建一个Python文件,并在其中编写测试代码。例如,假设你有一个名为"calculator.py"的文件,其中包含以下代码:
```python
def add(x, y):
return x + y
def subtract(x, y):
return x - y
```
接下来,你可以在同一目录下创建一个名为"test_calculator.py"的文件,其中包含以下代码:
```python
from calculator import add, subtract
def test_add():
assert add(2, 3) == 5
assert add(0, 0) == 0
assert add(-1, 1) == 0
def test_subtract():
assert subtract(2, 3) == -1
assert subtract(0, 0) == 0
assert subtract(-1, 1) == -2
```
这里我们使用pytest框架来编写测试代码。上面的代码中,我们从"calculator.py"中导入了add和subtract函数,并编写了两个测试函数test_add和test_subtract。每个测试函数中包含多个assert语句,用于测试相应函数的不同输入和输出情况。
要在VS Code中运行这些测试,你可以按下"Ctrl + Shift + P",然后输入"Python: Discover Tests",选择"pytest"作为测试运行器,然后选择要运行的测试文件。你也可以在终端中运行"pytest <test_file_name>"命令来运行测试。
如果测试全部通过,你将会看到类似于以下的输出:
```
============================= test session starts =============================
platform win32 -- Python 3.8.3, pytest-6.1.1, py-1.9.0, pluggy-0.13.1
rootdir: C:\path\to\project\directory
collected 2 items
test_calculator.py .. [100%]
============================== 2 passed in 0.04s ==============================
```
这意味着你的测试已经全部通过了。如果测试失败,你将会看到相应的错误消息,以帮助你找出问题所在。
阅读全文