pytest-platform-adapter 1.2.0__tar.gz → 1.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pytest_platform_adapter-1.2.0/src/pytest_platform_adapter.egg-info → pytest_platform_adapter-1.2.1}/PKG-INFO +2 -1
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1}/pyproject.toml +2 -1
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1}/src/pytest_platform_adapter/plugin.py +3 -0
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1/src/pytest_platform_adapter.egg-info}/PKG-INFO +2 -1
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1}/LICENSE +0 -0
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1}/README.md +0 -0
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1}/setup.cfg +0 -0
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1}/src/pytest_platform_adapter/__init__.py +0 -0
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1}/src/pytest_platform_adapter.egg-info/SOURCES.txt +0 -0
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1}/src/pytest_platform_adapter.egg-info/dependency_links.txt +0 -0
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1}/src/pytest_platform_adapter.egg-info/entry_points.txt +0 -0
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1}/src/pytest_platform_adapter.egg-info/requires.txt +0 -0
- {pytest_platform_adapter-1.2.0 → pytest_platform_adapter-1.2.1}/src/pytest_platform_adapter.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pytest_platform_adapter
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary: Pytest集成自动化平台插件
|
|
5
5
|
Author-email: BlackYau <blackyau426@gmail.com>
|
|
6
6
|
Maintainer-email: BlackYau <blackyau426@gmail.com>
|
|
@@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.9
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.10
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
26
|
Classifier: Topic :: Software Development
|
|
26
27
|
Classifier: Topic :: Software Development :: Testing
|
|
27
28
|
Classifier: Topic :: Software Development :: Testing :: Acceptance
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pytest_platform_adapter"
|
|
7
|
-
version = "1.2.
|
|
7
|
+
version = "1.2.1"
|
|
8
8
|
dependencies = [
|
|
9
9
|
"pytest>=6.2.5",
|
|
10
10
|
"allure-pytest>=2.9.45"
|
|
@@ -34,6 +34,7 @@ classifiers = [
|
|
|
34
34
|
'Programming Language :: Python :: 3.9',
|
|
35
35
|
'Programming Language :: Python :: 3.10',
|
|
36
36
|
'Programming Language :: Python :: 3.11',
|
|
37
|
+
'Programming Language :: Python :: 3.12',
|
|
37
38
|
'Topic :: Software Development',
|
|
38
39
|
'Topic :: Software Development :: Testing',
|
|
39
40
|
'Topic :: Software Development :: Testing :: Acceptance',
|
|
@@ -380,6 +380,9 @@ def pytest_configure(config):
|
|
|
380
380
|
'--scan'), config.getini('platform_ip'), config.getini('platform_port'), config.getini(
|
|
381
381
|
'platform_path'), config.getini('platform_use_https')
|
|
382
382
|
settings = build_env_check_settings(config)
|
|
383
|
+
if config.getoption('--scan'):
|
|
384
|
+
# 扫描模式下禁用环境检查,避免强制收集影响正常用例收集。
|
|
385
|
+
settings.mode = 'off'
|
|
383
386
|
config.stash[ENV_SETTINGS_KEY] = settings
|
|
384
387
|
config.stash[ENV_RUNTIME_KEY] = EnvCheckRuntime()
|
|
385
388
|
# 在强制模式下,将声明的环境检查 NodeID 注入到 pytest 收集参数中,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pytest_platform_adapter
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary: Pytest集成自动化平台插件
|
|
5
5
|
Author-email: BlackYau <blackyau426@gmail.com>
|
|
6
6
|
Maintainer-email: BlackYau <blackyau426@gmail.com>
|
|
@@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.9
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.10
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
26
|
Classifier: Topic :: Software Development
|
|
26
27
|
Classifier: Topic :: Software Development :: Testing
|
|
27
28
|
Classifier: Topic :: Software Development :: Testing :: Acceptance
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|