gpt4 book ai didi

python - 使用 Jenkins 中的管道执行 pytest

转载 作者:行者123 更新时间:2023-12-02 02:09:51 24 4
gpt4 key购买 nike

目前,我通过像“pytest mytest.py”这样的命令在 pytest 中执行测试,该命令复制到作业 Jenkins 中的表单字段“执行 Windows 批处理命令”中。我想改变我的工作以通过管道执行它。我尝试了 Stackoverflow 上的很多代码,但其中任何一个都不起作用。你有一个简单的代码来通过 pytest 连接到 Git 来运行回归测试吗?

最佳答案

我建议您使用:“Pyenv Pipeline”插件(https://plugins.jenkins.io/pyenv-pipeline)

stage("test PythonEnv") {

withPythonEnv('python3') {
sh 'pip install pytest'
sh 'pytest mytest.py'
}
}

关于python - 使用 Jenkins 中的管道执行 pytest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59542130/

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