111

Posted

Bronc Li

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了111相关的知识,希望对你有一定的参考价值。

import unittest,time
from htmlTestRunner import HTMLTestRunner

#指定测试用例为当前文件夹下的Practice目录
test_dir=‘./test_case‘
discover=unittest.defaultTestLoader.discover(test_dir,pattern=‘test_*.py‘)

if __name__==‘__main__‘:

    # 按照一定格式获取当前时间
    now=time.strftime("%Y-%m-%d %H_%M_%S")
    # 定义报告存放路径
    filename=test_dir+‘/Report/‘+now+‘result.html‘
    fp=open(filename,‘wb‘)

    # 定义测试报告
    runner=HTMLTestRunner(stream=fp,title=‘测试报告‘,description=‘用例执行情况‘)

    runner.run(discover)  # 运行测试用例
    fp.close()  # 关闭报告文件

  SendEmail.py

import smtplib
from email.mime.text import MIMEText
from email.header import Header

#发送邮件服务器
smtpserver=‘smtp.qq.com‘
#发送邮箱户名/密码
user=‘1368424681‘
password=‘0101‘
#发送邮件
sender=‘[email protected]‘
#接收邮箱
receiver=‘[email protected]‘
#发送邮件主题
subject=‘Python email test‘

#编写HTML类型的邮件正文
msg=MIMEText(‘<html><h1>你好!</h1></html>‘,‘html‘,‘utf-8‘)
msg[‘Subject‘]=Header(subject,‘utf-8‘)

#连接发送邮件
smtp=smtplib.SMTP()
smtp.connect(smtpserver)
smtp.login(user,password)
smtp.sendmail(sender,receiver,msg.as_string())
smtp.quit()

  

以上是关于111的主要内容,如果未能解决你的问题,请参考以下文章

算法手撕代码111~120

微信小程序代码片段

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

编写高质量代码改善C#程序的157个建议——建议111:避免双向耦合