jenkins中以目录为参数的脚本

时间:2018-07-27 14:12:39

标签: python python-3.x jenkins jenkins-pipeline

我希望我的python脚本在我定义的目录MVDZOS中采用一个参数,该参数是工作空间下的文件路径。 python脚本在MVD下,并且python中该参数的relevent行在该行中,因此路径必须用字符串包围:

    Dim oApp As Outlook.Application
    oApp = New Outlook.Application

    Dim oMsg As Outlook.MailItem
    oMsg = oApp.CreateItem(Outlook.OlItemType.olMailItem)

    oMsg.Recipients.Add("test@test.com")

    oMsg.Subject = "test"
    oMsg.HTMLBody = "<HTML><BODY>test - test</BODY></HTML>"
    oMsg.Display()

我当前的詹金斯人(无效):

for paths, subdirs, files in os.walk(r'' + sys.argv[1]):

0 个答案:

没有答案