pytest-dsl 0.15.1__tar.gz → 0.15.3__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.15.1/pytest_dsl.egg-info → pytest_dsl-0.15.3}/PKG-INFO +1 -1
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pyproject.toml +1 -5
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/dsl_executor.py +595 -352
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/parser.py +20 -2
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/validator.py +71 -1
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3/pytest_dsl.egg-info}/PKG-INFO +1 -1
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/LICENSE +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/MANIFEST.in +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/README.md +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/__init__.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/cli.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/conftest_adapter.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/__init__.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/auth_provider.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/auto_decorator.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/auto_directory.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/context.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/custom_keyword_manager.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/dsl_executor_utils.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/execution_tracker.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/global_context.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/hook_manager.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/hookable_executor.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/hookable_keyword_manager.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/hookspecs.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/http_client.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/http_request.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/keyword_loader.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/keyword_manager.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/keyword_utils.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/lexer.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/parsetab.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/plugin_discovery.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/utils.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/variable_utils.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/yaml_loader.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/core/yaml_vars.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/docs/custom_keywords.md +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/__init__.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/assert/assertion_example.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/assert/boolean_test.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/assert/expression_test.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/custom/test_advanced_keywords.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/custom/test_custom_keywords.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/custom/test_default_values.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/__init__.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/builtin_auth_test.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/file_reference_test.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/http_advanced.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/http_example.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/http_length_test.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/http_retry_assertions.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/http_retry_assertions_enhanced.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/http_with_yaml.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/new_retry_test.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/retry_assertions_only.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/retry_config_only.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/retry_debug.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/retry_with_fix.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/simple_retry.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/http/vars.yaml +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/quickstart/api_basics.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/quickstart/assertions.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/quickstart/loops.auto +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/test_assert.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/test_custom_keyword.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/test_http.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/examples/test_quickstart.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/keywords/__init__.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/keywords/assertion_keywords.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/keywords/global_keywords.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/keywords/http_keywords.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/keywords/system_keywords.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/main_adapter.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/plugin.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/remote/__init__.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/remote/hook_manager.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/remote/keyword_client.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/remote/keyword_server.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/remote/variable_bridge.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl/templates/keywords_report.html +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl.egg-info/SOURCES.txt +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl.egg-info/dependency_links.txt +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl.egg-info/entry_points.txt +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl.egg-info/requires.txt +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/pytest_dsl.egg-info/top_level.txt +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/setup.cfg +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/setup.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/auth_config.yaml +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/mock_config.yaml +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/simple_config.yaml +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_auth_mock_server.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_auth_runner.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_end_to_end_seamless.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_enhanced_variable_access.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_http_assertions_extractors.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_mock_server.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_platform_hook_integration.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_platform_hook_pytest.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_retry_runner.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_seamless_variable_sync.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_simple_hook_demo.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_variable_sync.py +0 -0
- {pytest_dsl-0.15.1 → pytest_dsl-0.15.3}/tests/test_variable_sync_demo.py +0 -0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "pytest-dsl"
|
7
|
-
version = "0.15.
|
7
|
+
version = "0.15.3"
|
8
8
|
description = "A DSL testing framework based on pytest"
|
9
9
|
readme = "README.md"
|
10
10
|
requires-python = ">=3.9"
|
@@ -48,7 +48,3 @@ pytest-dsl-list = "pytest_dsl.cli:main_list_keywords"
|
|
48
48
|
"Homepage" = "https://github.com/felix-1991/pytest-dsl"
|
49
49
|
"Bug Tracker" = "https://github.com/felix-1991/pytest-dsl/issues"
|
50
50
|
|
51
|
-
|
52
|
-
[[tool.uv.index]]
|
53
|
-
name = "tuna"
|
54
|
-
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
|