gpt4 book ai didi

python-3.x - 使用 pytest 运行 trace.py

转载 作者:行者123 更新时间:2023-12-04 01:36:54 26 4
gpt4 key购买 nike

我正在尝试使用 trace.py 进行覆盖运行时 pytest .我知道 pytest有自己的覆盖插件pytest-cov但是限制(每行执行的次数不可用)不允许我现在使用它。 coverage.py 相同

我正在尝试这个命令: python3.4 -m trace -c -m -C . pytest test_script.py

test_script.py :

class TestScript():
def test_print(self):
print ('Hello')

输出是:

nikhilh$ python3.4 -m trace -c -m -C . pytest test_script.py
pytest: Cannot run file 'pytest' because: [Errno 2] No such file or directory: 'pytest'

trace.py显然在其参数中需要一个文件而不是另一个模块。我如何修改此命令以获取 trace.py使用pytest

编辑:我能够找到一种方法来完成这项工作

nikhilh$ python3.4 -m trace -c -m -C . <pytest_script_absolute_path> test_script.py

最佳答案

看到 David 的评论,所以这是我当时使用的答案:

python3.4 -m trace -c -m -C . <pytest_script_absolute_path> test_script.py

关于python-3.x - 使用 pytest 运行 trace.py,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47747733/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com