工作中因要测试app的稳定性,市场上多用于monkey进行稳定测试,而字节跳动开源了一个基于monkey的稳定性测试工具Fastbot ,使用了一阶段,超级棒.
因为每次都要去输入一堆命令,故写了一个第三方包,主要功能是基于持续几分钟的点击效果
首先是构建包
创建一个包的工程目录:
#?\launchProject\setup.py
from?setuptools?import?setup,?find_packages
with?open("README.md",?"r",?encoding="utf-8")?as?fh:
????long_description?=?fh.read()
setup(
????name="dfwsgroup",
????description="快速启动-android稳定性测试",
????version="1.0.2",
????author="liFeng",
????author_email="960158047@qq.com",
????long_description=long_description,
????long_description_content_type="text/markdown",
????url="https://gitee.com/rising_test/first.git",
????classifiers=[
????????"Programming?Language?::?Python?::?3",
????????"License?::?OSI?Approved?::?MIT?License",
????????"Operating?System?::?OS?Independent",
????],
????packages=find_packages("src"),
????package_dir={"":?"src"},
????python_requires=">=3.7",
????requires=["Jinja2",?"pyyaml"],
????package_data={
????????"":?["*.txt"],
????????"dfwsgroup":?["data/*.yml",?"android/Fastbot_Android/*.jar"],
????}
)
name 是您的包的分发名称。这可以是任何名称version 是包版本author 并author_email 用于标识包的作者description 是一个简短的、一句话的包摘要。long_description 是包的详细说明。long_description_content_type 告诉索引长描述使用什么类型的标记。url 是项目主页的 URL。classifiers 提供 index 和pip一些关于你的包的额外元数据。package_dir 是一个字典,其中键的包名称和值的目录。python_requires 给出项目支持的 Python 版本。requires 是需要安装的包package_data 是附带的一些依赖数据
其次生成分发档案
windows:
py -m pip install --upgrade build
windows:
py -m build
此命令应输出大量文本,完成后应在dist目录中生成两个文件:
dist/
??example-package-YOUR-USERNAME-HERE-0.0.1-py3-none-any.whl
??example-package-YOUR-USERNAME-HERE-0.0.1.tar.gz
然后上传分发档案
前置条件:https://test.pypi.org/account/register/ 去注册一个账号(专门的测试平台)
现在您已注册,您可以使用twine上传分发包。您需要安装 Twine:
windows:
py -m pip install --upgrade twine
安装后,运行 Twine 以上传以下所有档案dist:
windows:
py -m twine upload --repository testpypi dist/*
命令完成后,您应该会看到类似于以下内容的输出:
PS?E:\git_code\python-code\launchProject>?py?-m?twine?upload?--repository?testpypi?dist/*
Uploading?distributions?to?https://test.pypi.org/legacy/
Enter?your?username:?lifeng0402
Enter?your?password:
Uploading?fastrun-1.0.0-py3-none-any.whl
Enter?your?password:
Uploading?fastrun-1.0.0-py3-none-any.whl
100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████|?10.7k/10.7k?[00:02<00:00,?4.83kB/s]?
Uploading?fastrun-1.0.0.tar.gz
100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████|?9.75k/9.75k?[00:02<00:00,?4.79kB/s]?
View?at:
https://test.pypi.org/project/fastrun/1.0.0/
安装新上传的包
pip?install?--index-url?https://test.pypi.org/simple/?--no-deps?fastrun
安装上传的包,在本地测试下是否正常,正常了以后再推到正式环境,本地已测试,省略了测试步骤
发布至正式环境
正式环境就把testpypi 修改成pypi 即可:
PS?E:\git_code\python-code\launchProject>?py?-m?twine?upload?--repository?testpypi?dist/*
Uploading?distributions?to?https://test.pypi.org/legacy/
Enter?your?username:?lifeng0402
Enter?your?password:?
Uploading?fastrun-1.0.1-py3-none-any.whl
Uploading?fastrun-1.0.1.tar.gz
100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████|?10.7k/10.7k?[00:02<00:00,?4.84kB/s]?
Uploading?fastrun-1.0.1.tar.gz
100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████|?9.73k/9.73k?[00:01<00:00,?7.33kB/s]?
View?at:
https://pypi.org/project/fastrun/1.0.1/
访问项目包地址 https://pypi.org/project/fastrun/
?后续会持续更新...
今天先聊到这里吧,以上总结或许能帮助到你,或许帮助不到你,但还是希望能帮助到你,如有疑问、歧义,直接私信留言会及时修正发布;非常期待你的一键④连【 赞赏、点赞、在看、分享 】 哟,谢谢!
未完成,待续……
一直在努力,希望你也是!
微信号:waiting940601 文章作者:李锋;编辑排版:梁莉莉
|