1 Star 0 Fork 0

小新/web_UI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run_case.py 656 Bytes
一键复制 编辑 原始数据 按行查看 历史
24694 提交于 2021-09-06 17:44 . 添加元素展示
# -*- encoding: utf-8 -*-
"""
@User : 24694
@File : run_case.py.py
@Time : 2021/8/23/023 18:24
@Author : XXX
@Email : liyx5343@163.com
@Software: PyCharm
"""
import sys
import subprocess
WIN = sys.platform.startswith('win')
def main():
"""主函数"""
steps = [
"venv\\Script\\activate" if WIN else "source venv/bin/activate",
"pytest --alluredir allure-results --clean-alluredir",
"allure generate allure-results -c -o allure-report",
"allure open allure-report"
]
for step in steps:
subprocess.run("call " + step if WIN else step, shell=True)
if __name__ == "__main__":
main()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaoxinai/web_UI.git
git@gitee.com:xiaoxinai/web_UI.git
xiaoxinai
web_UI
web_UI
master

搜索帮助