16 lines
561 B
Python
16 lines
561 B
Python
# -*- coding: utf-8 -*-
|
|
# @Time : 2021/9/9 23:43
|
|
# @Author : Flora.Chen
|
|
# @File : test.py
|
|
# @Software: PyCharm
|
|
# @Desc:
|
|
from httprunner.api import HttpRunner
|
|
from httprunner.report.html.gen_report import gen_html_report
|
|
|
|
httprun = HttpRunner(log_level="debug")
|
|
# result = httprun.run(r'D:\PycharmProjects\dev08\learn_httprunner\api\login_api.yml')
|
|
result = httprun.run(r'D:\1-PythonProject\py08test\learn_httprunner\testsuites\all_testsuites.yml')
|
|
gen_html_report(result, report_file=r"D:\1-PythonProject\py08test\learn_httprunner\reports\index.html")
|
|
|
|
|