cli-test-framework 1.0.0__tar.gz → 1.0.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.
- {cli_test_framework-1.0.0/src/cli_test_framework.egg-info → cli_test_framework-1.0.1}/PKG-INFO +1 -1
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/docs/user_manual.md +1 -1
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/setup.py +1 -1
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/app.py +1 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/screens/case_list.py +1 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1/src/cli_test_framework.egg-info}/PKG-INFO +1 -1
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/MANIFEST.in +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/README.md +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/docs/design.md +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/docs/design_en.md +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/docs/tui_and_config_split_design.md +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/docs/user_manual_en.md +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/pyproject.toml +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/setup.cfg +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/cli.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/commands/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/commands/compare.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/config/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/config/config_io.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/config/import_expander.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/assertions.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/base_runner.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/config_loader.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/execution.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/history_store.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/parallel_runner.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/process_worker.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/setup.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/test_case.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/types.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/file_comparator/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/file_comparator/base_comparator.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/file_comparator/binary_comparator.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/file_comparator/csv_comparator.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/file_comparator/factory.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/file_comparator/h5_comparator.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/file_comparator/json_comparator.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/file_comparator/result.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/file_comparator/text_comparator.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/file_comparator/xml_comparator.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/logging_config.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/runners/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/runners/config_runner.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/runners/json_runner.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/runners/parallel_config_runner.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/runners/parallel_json_runner.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/runners/parallel_yaml_runner.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/runners/yaml_runner.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/controllers/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/controllers/case_controller.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/screens/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/screens/case_editor.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/widgets/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/widgets/case_table.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/widgets/expected_editor.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/widgets/search_bar.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/widgets/steps_editor.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/utils/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/utils/junit_xml_writer.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/utils/path_resolver.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/utils/report_generator.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework.egg-info/SOURCES.txt +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework.egg-info/dependency_links.txt +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework.egg-info/entry_points.txt +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework.egg-info/requires.txt +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework.egg-info/top_level.txt +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/README.md +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/__init__.cpython-312.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/__init__.cpython-39.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/conftest.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/conftest.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/conftest.cpython-39-pytest-8.3.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/run_all.cpython-312.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/run_all.cpython-39.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/test_parallel_runner.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/test_setup_module.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/conftest.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/demos/h5_filter_demo.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/demos/manual_report_example.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/demos/perf_parallel.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/e2e/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/e2e/__pycache__/__init__.cpython-312.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/e2e/__pycache__/__init__.cpython-39.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/e2e/__pycache__/test_user_flows.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/e2e/__pycache__/test_user_flows.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/e2e/__pycache__/test_user_flows.cpython-39-pytest-8.3.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/e2e/test_user_flows.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/circular_config_a.json +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/circular_config_b.json +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/main_config.json +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/missing_fields.json +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/setup_main.json +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/setup_sub.json +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/sub_json_tests.yaml +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/sub_text_tests.json +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/test_cases.json +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/test_cases.yaml +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/test_cases1.json +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/test_with_setup.json +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/fixtures/test_with_setup.yaml +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/__pycache__/test_history_feature.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/__pycache__/test_history_feature.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/__pycache__/test_real_command_execution.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/__pycache__/test_real_command_execution.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/__pycache__/test_sequence.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/__pycache__/test_sequence.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_binary_compare.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_binary_compare.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_binary_compare.cpython-39-pytest-8.3.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_csv_compare.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_csv_compare.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_h5_compare.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_h5_compare.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_h5_compare.cpython-39-pytest-8.3.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_json_compare.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_json_compare.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_json_compare.cpython-39-pytest-8.3.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_text_compare.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_text_compare.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_text_compare.cpython-39-pytest-8.3.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_xml_compare.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/__pycache__/test_xml_compare.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/test_binary_compare.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/test_csv_compare.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/test_h5_compare.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/test_json_compare.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/test_text_compare.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/file_compare/test_xml_compare.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/parallel/__pycache__/test_parallel_runner.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/parallel/__pycache__/test_parallel_runner.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/parallel/__pycache__/test_parallel_runner.cpython-39-pytest-8.3.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/parallel/test_parallel_runner.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/path_handling/__pycache__/test_spaces_in_paths.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/path_handling/__pycache__/test_spaces_in_paths.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/path_handling/__pycache__/test_spaces_in_paths.cpython-39-pytest-8.3.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/path_handling/test_spaces_in_paths.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/test_history_feature.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/test_real_command_execution.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/test_sequence.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/run_all.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/test_report.txt +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/__pycache__/test_binary_comparator.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/__pycache__/test_cli.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/__pycache__/test_cli.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/__pycache__/test_config_io.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/__pycache__/test_h5_comparator.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/__pycache__/test_h5_comparator.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/__pycache__/test_import_expander.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/__pycache__/test_import_expander.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/__pycache__/test_result.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/__pycache__/test_run_all.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/__pycache__/test_run_all.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/commands/__pycache__/test_compare_command.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/commands/__pycache__/test_compare_command.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/commands/test_compare_command.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/__pycache__/test_assertions.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/__pycache__/test_assertions.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/__pycache__/test_config_loader.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/__pycache__/test_execution.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/__pycache__/test_history_store.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/__pycache__/test_history_store.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/__pycache__/test_process_worker.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/__pycache__/test_process_worker.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/__pycache__/test_setup.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/__pycache__/test_setup.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/__pycache__/test_setup.cpython-39-pytest-8.3.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/test_assertions.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/test_config_loader.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/test_execution.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/test_history_store.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/test_process_worker.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/test_setup.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/__pycache__/test_json_yaml_runner.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/__pycache__/test_json_yaml_runner.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/__pycache__/test_json_yaml_runner.cpython-312.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/__pycache__/test_json_yaml_runner.cpython-39-pytest-8.3.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/__pycache__/test_test_case_filter.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/__pycache__/test_test_case_filter.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/__pycache__/test_test_case_tag_filter.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/test_json_yaml_runner.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/test_test_case_filter.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/test_test_case_tag_filter.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/test_binary_comparator.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/test_cli.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/test_config_io.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/test_h5_comparator.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/test_import_expander.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/test_result.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/test_run_all.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__init__.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__pycache__/__init__.cpython-312.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__pycache__/conftest.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__pycache__/test_app.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__pycache__/test_app.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__pycache__/test_case_controller.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__pycache__/test_case_controller.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__pycache__/test_search_functions.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__pycache__/test_search_functions.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__pycache__/test_tui_run_test.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__pycache__/test_widgets_data.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/__pycache__/test_widgets_data.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/conftest.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/test_app.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/test_case_controller.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/test_search_functions.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/test_tui_run_test.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/test_widgets_data.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/utils/__pycache__/test_junit_xml_writer.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/utils/__pycache__/test_junit_xml_writer.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/utils/__pycache__/test_report_generator.cpython-312-pytest-7.4.4.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/utils/__pycache__/test_report_generator.cpython-312-pytest-9.0.3.pyc +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/utils/test_junit_xml_writer.py +0 -0
- {cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/utils/test_report_generator.py +0 -0
{cli_test_framework-1.0.0/src/cli_test_framework.egg-info → cli_test_framework-1.0.1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cli-test-framework
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: A powerful command line testing framework in Python with setup modules, parallel execution, and file comparison capabilities.
|
|
5
5
|
Home-page: https://github.com/ozil111/cli-test-framework
|
|
6
6
|
Author: Xiaotong Wang
|
|
@@ -365,7 +365,7 @@ TUI 启动后显示**用例列表主界面**:
|
|
|
365
365
|
| `Alt+S` | 切换子串搜索模式(大小写不敏感) |
|
|
366
366
|
| `Alt+F` | 切换模糊搜索模式(容忍拼写差异和缩写) |
|
|
367
367
|
| `Alt+R` | 切换正则搜索模式 |
|
|
368
|
-
| `Ctrl+Q` | 退出 |
|
|
368
|
+
| `q` / `Ctrl+Q` | 退出 |
|
|
369
369
|
| `↑` / `↓` / `j` / `k` | 上下移动光标 |
|
|
370
370
|
|
|
371
371
|
搜索时会同时匹配 `name`、`command`、`args`、`tags`、`description` 等字段,匹配结果在表格中高亮显示。
|
|
@@ -8,7 +8,7 @@ with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name="cli-test-framework",
|
|
11
|
-
version="1.0.
|
|
11
|
+
version="1.0.1",
|
|
12
12
|
author="Xiaotong Wang",
|
|
13
13
|
author_email="xiaotongwang98@gmail.com",
|
|
14
14
|
description="A powerful command line testing framework in Python with setup modules, parallel execution, and file comparison capabilities.",
|
|
@@ -27,6 +27,7 @@ class CaseListScreen(Screen):
|
|
|
27
27
|
Binding("f6", "save_file", "Save", show=True),
|
|
28
28
|
Binding("ctrl+s", "save_file", "Save", show=False),
|
|
29
29
|
Binding("ctrl+q", "quit", "Quit", show=True),
|
|
30
|
+
Binding("q", "quit", "Quit", show=True),
|
|
30
31
|
Binding("n", "next_match", "Next", show=False),
|
|
31
32
|
Binding("shift+enter", "prev_match", "Prev", show=False),
|
|
32
33
|
Binding("up", "cursor_up", "", show=False),
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1/src/cli_test_framework.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cli-test-framework
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: A powerful command line testing framework in Python with setup modules, parallel execution, and file comparison capabilities.
|
|
5
5
|
Home-page: https://github.com/ozil111/cli-test-framework
|
|
6
6
|
Author: Xiaotong Wang
|
|
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
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/commands/__init__.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/commands/compare.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/config/__init__.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/config/config_io.py
RENAMED
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/__init__.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/assertions.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/base_runner.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/config_loader.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/execution.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/history_store.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/parallel_runner.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/process_worker.py
RENAMED
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/core/test_case.py
RENAMED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/logging_config.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/runners/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/runners/json_runner.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/runners/yaml_runner.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/screens/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/tui/widgets/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/utils/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework/utils/path_resolver.py
RENAMED
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework.egg-info/requires.txt
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/src/cli_test_framework.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/__init__.cpython-312.pyc
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/__init__.cpython-39.pyc
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/run_all.cpython-312.pyc
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/__pycache__/run_all.cpython-39.pyc
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/e2e/__pycache__/__init__.cpython-312.pyc
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/e2e/__pycache__/__init__.cpython-39.pyc
RENAMED
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/integration/test_history_feature.py
RENAMED
|
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
|
|
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
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/commands/test_compare_command.py
RENAMED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/core/test_process_worker.py
RENAMED
|
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
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/test_json_yaml_runner.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/runners/test_test_case_filter.py
RENAMED
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/test_case_controller.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/tui/test_search_functions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/utils/test_junit_xml_writer.py
RENAMED
|
File without changes
|
{cli_test_framework-1.0.0 → cli_test_framework-1.0.1}/tests/unit/utils/test_report_generator.py
RENAMED
|
File without changes
|