pytest-dsl 0.10.0__tar.gz → 0.11.0__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_dsl-0.10.0 → pytest_dsl-0.11.0}/MANIFEST.in +1 -0
- {pytest_dsl-0.10.0/pytest_dsl.egg-info → pytest_dsl-0.11.0}/PKG-INFO +2 -1
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pyproject.toml +2 -1
- pytest_dsl-0.11.0/pytest_dsl/cli.py +977 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/custom_keyword_manager.py +1 -4
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/keyword_manager.py +77 -3
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/plugin_discovery.py +38 -1
- pytest_dsl-0.11.0/pytest_dsl/templates/keywords_report.html +862 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0/pytest_dsl.egg-info}/PKG-INFO +2 -1
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl.egg-info/SOURCES.txt +1 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl.egg-info/requires.txt +1 -0
- pytest_dsl-0.10.0/pytest_dsl/cli.py +0 -533
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/LICENSE +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/README.md +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/__init__.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/conftest_adapter.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/__init__.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/auth_provider.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/auto_decorator.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/auto_directory.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/context.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/dsl_executor.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/dsl_executor_utils.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/global_context.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/http_client.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/http_request.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/lexer.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/parser.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/parsetab.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/utils.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/variable_utils.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/yaml_loader.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/core/yaml_vars.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/docs/custom_keywords.md +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/__init__.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/assert/assertion_example.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/assert/boolean_test.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/assert/expression_test.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/custom/test_advanced_keywords.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/custom/test_custom_keywords.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/custom/test_default_values.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/__init__.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/builtin_auth_test.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/file_reference_test.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/http_advanced.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/http_example.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/http_length_test.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/http_retry_assertions.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/http_retry_assertions_enhanced.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/http_with_yaml.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/new_retry_test.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/retry_assertions_only.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/retry_config_only.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/retry_debug.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/retry_with_fix.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/simple_retry.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/http/vars.yaml +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/quickstart/api_basics.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/quickstart/assertions.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/quickstart/loops.auto +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/test_assert.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/test_custom_keyword.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/test_http.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/examples/test_quickstart.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/keywords/__init__.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/keywords/assertion_keywords.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/keywords/global_keywords.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/keywords/http_keywords.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/keywords/system_keywords.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/main_adapter.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/plugin.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/remote/__init__.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/remote/hook_manager.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/remote/keyword_client.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/remote/keyword_server.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl/remote/variable_bridge.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl.egg-info/dependency_links.txt +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl.egg-info/entry_points.txt +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/pytest_dsl.egg-info/top_level.txt +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/setup.cfg +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/setup.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/tests/test_end_to_end_seamless.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/tests/test_enhanced_variable_access.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/tests/test_http_assertions_extractors.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/tests/test_seamless_variable_sync.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/tests/test_variable_sync.py +0 -0
- {pytest_dsl-0.10.0 → pytest_dsl-0.11.0}/tests/test_variable_sync_demo.py +0 -0
@@ -5,6 +5,7 @@ include MANIFEST.in
|
|
5
5
|
|
6
6
|
recursive-include pytest_dsl/examples *.auto *.csv *.yaml *.yml
|
7
7
|
recursive-include pytest_dsl/docs *.md *.rst *.txt *.png *.jpg
|
8
|
+
recursive-include pytest_dsl/templates *.html
|
8
9
|
recursive-include tests *.py *.auto *.csv *.yaml *.yml
|
9
10
|
|
10
11
|
prune .venv
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pytest-dsl
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.11.0
|
4
4
|
Summary: A DSL testing framework based on pytest
|
5
5
|
Author: Chen Shuanglin
|
6
6
|
License: MIT
|
@@ -27,6 +27,7 @@ Requires-Dist: requests>=2.28.0
|
|
27
27
|
Requires-Dist: lxml>=4.9.0
|
28
28
|
Requires-Dist: jsonschema>=4.17.0
|
29
29
|
Requires-Dist: pytz>=2023.3
|
30
|
+
Requires-Dist: Jinja2>=3.0.0
|
30
31
|
Dynamic: license-file
|
31
32
|
|
32
33
|
# pytest-dsl: 强大的关键字驱动测试自动化框架
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "pytest-dsl"
|
7
|
-
version = "0.
|
7
|
+
version = "0.11.0"
|
8
8
|
description = "A DSL testing framework based on pytest"
|
9
9
|
readme = "README.md"
|
10
10
|
requires-python = ">=3.9"
|
@@ -33,6 +33,7 @@ dependencies = [
|
|
33
33
|
"lxml>=4.9.0",
|
34
34
|
"jsonschema>=4.17.0",
|
35
35
|
"pytz>=2023.3",
|
36
|
+
"Jinja2>=3.0.0",
|
36
37
|
]
|
37
38
|
|
38
39
|
[project.entry-points.pytest11]
|