创建任务
中午12点 H/5 * * * 代表5分钟一次
cd /var/jenkins_home/workspace/autotest 代表进入jenkins从git拉取到的项目路径,这个项目路径下有个文件test_ruall.py
import pytest
pytest.main(["-v",f'--html=test.html'])
python3 -m pytest代表会通过pytest框架来执行autotest下的这个文件,这个文件会执行所有的用例,并且会在autotest下生成一个测试报告test.html
标签:jekins,autotest,凭据,pytest,html,test,jenkins,全局 From: https://www.cnblogs.com/yitian395/p/16824896.html