📜  子文件夹中的 pytest 测试 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:18.336000             🧑  作者: Mango

代码示例1
# Create a file containing

import os, pathlib
import pytest

os.chdir( pathlib.Path.cwd() / 'Tests' )

pytest.main()

# And use the command `python tests.py` to run it.