You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

aamt

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aamt - pypi Package Compare versions

Comparing version
0.2.3
to
0.2.4
+6
entry_points.txt
[console_scripts]
aamt=aamt.cli:main
[pytest11]
aamt=aamt.plugin:Plugin
Metadata-Version: 2.1
Name: aamt
Version: 0.2.4
Summary: 基于pytest的接口自动化测试工具模板
Home-page: https://github.com/xuefeng365/aamt-template.git
License: MIT
Author: xuefeng365
Author-email: 120158568@qq.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: allure-pytest (>=2.12.0,<3.0.0)
Requires-Dist: colorlog (>=6.7.0,<7.0.0)
Requires-Dist: faker (>=15.3.3,<16.0.0)
Requires-Dist: jmespath (>=1.0.1,<2.0.0)
Requires-Dist: pytest (>=7.2.0,<8.0.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Requires-Dist: sqlalchemy (>=1.4.44,<2.0.0)
Requires-Dist: texttable (>=1.6.7,<2.0.0)
Project-URL: Repository, https://github.com/xuefeng365/aamt-template.git
Description-Content-Type: text/markdown
## AAMT 项目模版
> 用于生成 基于pytest的接口自动化脚手架
python 版本
> 3.9
安装最新版本
> pip install aamt
指定版本安装
> pip install aamt==0.2.3
升级aamt
> pip install -U aamt
创建项目脚手架
> aamt startproject demo
创建项目脚手架(自动创建虚拟环境)
> aamt startproject demo -venv
外网速度慢,pandas可能安装失败,推荐用国内镜像
> pip --default-timeout=6000 install -i https://pypi.tuna.tsinghua.edu.cn/simple aamt
aamt/__init__.py,sha256=E6ZLFyFc6NhP_CVK4IoEceM61IZAIDMVuji8P_pwYhM,117
aamt/cli.py,sha256=Uu-w9yESJ8c5zi83XU8e9MdZEn-FGLgCJCRuIjLWylM,1358
aamt/config.py,sha256=l2F_0rfw_G8cemM074bz8sejpO6OGOwq6VwmETI9Bug,1192
aamt/fixture.py,sha256=1G3Y_Gpse7ufjw_Zti8lwInoau3uAYHuhJ4ugnVnl_4,1348
aamt/plugin.py,sha256=INaJLLyDtkjQ2RklP3Ic6DTgUpJXUF_3nw5l4cfoFdo,6409
aamt/sample.py,sha256=NyZTn9LsPP5KC-e5wFER0LX_5genIvPkANDfd0wknuU,55664
aamt/scaffold.py,sha256=1o5BFa9dJIoPGct5BIF8Y4pNjAMmhjAlvb0Zy9Hzuqk,7104
aamt-0.2.4.dist-info/entry_points.txt,sha256=U6K8jzv8qTR9QrBTh5u8R70El_2zu5awufdcdrLBaH0,74
aamt-0.2.4.dist-info/WHEEL,sha256=vxFmldFsRN_Hx10GDvsdv1wroKq8r5Lzvjp6GZ4OO8c,88
aamt-0.2.4.dist-info/METADATA,sha256=zWwPda_x9P2PSS1GciUrlT2cIlO9MZXKXoXEyiRyKbU,1460
aamt-0.2.4.dist-info/RECORD,,
Wheel-Version: 1.0
Generator: poetry-core 1.3.2
Root-Is-Purelib: true
Tag: py3-none-any
+12
-2

@@ -1151,2 +1151,9 @@ # -*- coding: utf-8 -*-

[pytest]
;# 选中指定标记smoke执行
addopts = -v -s -m smoke
;# 同时选中多个标记:只要标记'smoke or offer_serve'都执行
;addopts = -v -s -m 'smoke or offer_serve'
;testpaths = ./examples
testpaths = ./case

@@ -1160,4 +1167,7 @@ python_files = test_offer_doctor.py

markers =
smoke:0
test:1
smoke:冒烟测试用例
offer_serve: offer微服务下的接口
single_api: 单接口参数校验用例
p0: level p0 (优先级)
p1: level p1 (优先级)

@@ -1164,0 +1174,0 @@

-59
Metadata-Version: 2.1
Name: aamt
Version: 0.2.3
Summary: 基于pytest的接口自动化测试工具模板
Home-page: https://github.com/xuefeng365/aamt-template.git
License: MIT
Author: xuefeng365
Author-email: 120158568@qq.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: allure-pytest (>=2.12.0,<3.0.0)
Requires-Dist: colorlog (>=6.7.0,<7.0.0)
Requires-Dist: faker (>=15.3.3,<16.0.0)
Requires-Dist: jmespath (>=1.0.1,<2.0.0)
Requires-Dist: pytest (>=7.2.0,<8.0.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Requires-Dist: sqlalchemy (>=1.4.44,<2.0.0)
Requires-Dist: texttable (>=1.6.7,<2.0.0)
Project-URL: Repository, https://github.com/xuefeng365/aamt-template.git
Description-Content-Type: text/markdown
## AAMT 项目模版
> 用于生成 基于pytest的接口自动化脚手架
python 版本
> 3.9
安装最新版本
> pip install aamt
指定版本安装
> pip install aamt==0.2.2
升级aamt
> pip install -U aamt
创建项目脚手架
> aamt startproject demo
创建项目脚手架(自动创建虚拟环境)
> aamt startproject demo -venv
外网速度慢,pandas可能安装失败,推荐用国内镜像
> pip --default-timeout=6000 install -i https://pypi.tuna.tsinghua.edu.cn/simple aamt
[tool.poetry]
name = "aamt"
version = "0.2.3"
description = "基于pytest的接口自动化测试工具模板"
authors = ["xuefeng365 <120158568@qq.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/xuefeng365/aamt-template.git"
repository = "https://github.com/xuefeng365/aamt-template.git"
packages = [{include = "aamt"}]
[tool.poetry.dependencies]
python = "^3.9"
pyyaml = "^6.0"
sqlalchemy = "^1.4.44"
texttable = "^1.6.7"
jmespath = "^1.0.1"
faker = "^15.3.3"
colorlog = "^6.7.0"
allure-pytest = "^2.12.0"
pytest = "^7.2.0"
[tool.poetry.dev-dependencies]
[[tool.poetry.source]]
name = "tsinghua"
default = true
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
[tool.poetry.scripts]
aamt = "aamt.cli:main"
[tool.poetry.plugins."pytest11"]
"aamt" = "aamt.plugin:Plugin"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
## AAMT 项目模版
> 用于生成 基于pytest的接口自动化脚手架
python 版本
> 3.9
安装最新版本
> pip install aamt
指定版本安装
> pip install aamt==0.2.2
升级aamt
> pip install -U aamt
创建项目脚手架
> aamt startproject demo
创建项目脚手架(自动创建虚拟环境)
> aamt startproject demo -venv
外网速度慢,pandas可能安装失败,推荐用国内镜像
> pip --default-timeout=6000 install -i https://pypi.tuna.tsinghua.edu.cn/simple aamt
# -*- coding: utf-8 -*-
from setuptools import setup
packages = \
['aamt']
package_data = \
{'': ['*']}
install_requires = \
['allure-pytest>=2.12.0,<3.0.0',
'colorlog>=6.7.0,<7.0.0',
'faker>=15.3.3,<16.0.0',
'jmespath>=1.0.1,<2.0.0',
'pytest>=7.2.0,<8.0.0',
'pyyaml>=6.0,<7.0',
'sqlalchemy>=1.4.44,<2.0.0',
'texttable>=1.6.7,<2.0.0']
entry_points = \
{'console_scripts': ['aamt = aamt.cli:main'],
'pytest11': ['aamt = aamt.plugin:Plugin']}
setup_kwargs = {
'name': 'aamt',
'version': '0.2.3',
'description': '基于pytest的接口自动化测试工具模板',
'long_description': '## AAMT 项目模版\n> 用于生成 基于pytest的接口自动化脚手架\n\npython 版本\n\n> 3.9\n\n安装最新版本\n\n> pip install aamt\n\n指定版本安装\n\n> pip install aamt==0.2.2\n\n升级aamt\n\n> pip install -U aamt\n\n创建项目脚手架 \n\n> aamt startproject demo\n\n创建项目脚手架(自动创建虚拟环境)\n\n> aamt startproject demo -venv\n\n外网速度慢,pandas可能安装失败,推荐用国内镜像\n\n> pip --default-timeout=6000 install -i https://pypi.tuna.tsinghua.edu.cn/simple aamt\n\n\n\n',
'author': 'xuefeng365',
'author_email': '120158568@qq.com',
'maintainer': 'None',
'maintainer_email': 'None',
'url': 'https://github.com/xuefeng365/aamt-template.git',
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'entry_points': entry_points,
'python_requires': '>=3.9,<4.0',
}
setup(**setup_kwargs)