smart-tests-cli 2.7.1__tar.gz → 2.7.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.
- {smart_tests_cli-2.7.1/smart_tests_cli.egg-info → smart_tests_cli-2.7.3}/PKG-INFO +1 -1
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/compare/subsets.py +1 -1
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/inspect/subset.py +1 -1
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/maven.py +67 -13
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/playwright.py +46 -2
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/raw.py +11 -2
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/testpath.py +25 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/http_client.py +15 -1
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3/smart_tests_cli.egg-info}/PKG-INFO +1 -1
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests_cli.egg-info/SOURCES.txt +13 -0
- smart_tests_cli-2.7.3/tests/data/maven/README.md +75 -0
- smart_tests_cli-2.7.3/tests/data/maven/dryrun-test/target/surefire-reports/TEST-com.example.excludetestapplication.ExcludeTestApplicationTests.xml +87 -0
- smart_tests_cli-2.7.3/tests/data/maven/dryrun-test/target/surefire-reports/TEST-com.launchable.demo.CalculatorTest.xml +91 -0
- smart_tests_cli-2.7.3/tests/data/maven/dryrun-test/target/surefire-reports/TEST-com.launchable.demo.MixedTagsTest.xml +79 -0
- smart_tests_cli-2.7.3/tests/data/maven/dryrun-test/target/surefire-reports/com.example.excludetestapplication.ExcludeTestApplicationTests.txt +4 -0
- smart_tests_cli-2.7.3/tests/data/maven/dryrun-test/target/surefire-reports/com.launchable.demo.CalculatorTest.txt +4 -0
- smart_tests_cli-2.7.3/tests/data/maven/dryrun-test/target/surefire-reports/com.launchable.demo.MixedTagsTest.txt +4 -0
- smart_tests_cli-2.7.3/tests/data/playwright/playwright.config.ts +1 -0
- smart_tests_cli-2.7.3/tests/data/playwright/record_test_result_with_json_base.json +49 -0
- smart_tests_cli-2.7.3/tests/data/playwright/record_test_result_with_prefix.json +49 -0
- smart_tests_cli-2.7.3/tests/data/playwright/report_with_json_base.json +64 -0
- smart_tests_cli-2.7.3/tests/data/playwright/report_with_prefix.json +64 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_maven.py +106 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_playwright.py +27 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_raw.py +13 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_testpath.py +36 -1
- smart_tests_cli-2.7.3/tests/utils/__init__.py +0 -0
- smart_tests_cli-2.7.3/tests/utils/test_http_client.py +72 -0
- smart_tests_cli-2.7.1/tests/utils/test_http_client.py +0 -36
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.bazelrc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.bazelversion +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.dockerignore +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.editorconfig +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.github/release.yml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.github/workflows/bazel-test.yml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.github/workflows/e2e.yml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.github/workflows/publish.yml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.github/workflows/test.yml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.github/workflows/update_maven_install_json.yml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.gitignore +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.pre-commit-config.yaml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.python-version +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/.tagpr +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/CLAUDE.md +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/CONTRIBUTING.md +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/Dockerfile +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/LICENSE.txt +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/README.md +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/WORKSPACE +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/build-java.sh +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/pyproject.toml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/renovate.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/scripts/update_docs.sh +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/setup.cfg +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/setup.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/__main__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/app.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/args4p/README.md +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/args4p/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/args4p/argument.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/args4p/command.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/args4p/converters/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/args4p/decorators.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/args4p/exceptions.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/args4p/option.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/args4p/parameter.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/args4p/typer/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/compare/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/detect_flakes.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/gate.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/get/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/get/docs.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/inspect/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/inspect/model.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/record/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/record/attachment.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/record/build.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/record/case_event.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/record/commit.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/record/deployment.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/record/session.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/record/tests.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/stats/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/stats/test_sessions.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/subset.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/test_path_writer.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/update/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/update/alias.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/commands/verify.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/antora.yml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/0607-inference.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/0607-subset-creation.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/0607-training.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/507088cf-209d-4856-be3e-60477c166d92.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/confidence-curve.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/customer-example-curve.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/data-flow.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/demo.gif +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/eval-sessions-prioritized.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/eval-sessions.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/flavors.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/github-comment.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/groups-2-record-after.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/how-long-train-ml-model.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/icons/icon-vertical-three-dots-dark.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/illustion-run-whitelisted-tests-1.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/illustration-ignore-flakes-1.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/illustration-rotate-optimize-coverage.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/illustration-run-recently-failed-tests.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/in-place.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/link-to-results-example.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/model-training-evaluation-confidence-curves.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/new-code-existing-tests.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/object-model-june.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/object-model-v2.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/object-model.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/optimization-target.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/predictive-test-selection-observation-mode.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/prioritized-evaluation-session.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/pts-v2-working.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/recording-data.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/recording-from-multiple-repos-built-separately-detailed.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/recording-from-multiple-repos-built-separately.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/recording-from-multiple-repos.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/screenshot-2023-07-25-at-20-41-20.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/screenshot-2023-07-25-at-20-44-15.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/screenshot-2023-07-25-at-20-45-10.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/screenshot-2023-08-22-at-22-50-49.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/screenshot-2024-04-29-at-1-48-30-pm.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/screenshot-2024-04-29-at-2-14-11-pm.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/screenshot-2024-05-15-at-4-50-56-pm.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/screenshot-2024-05-15-at-5-06-32-pm.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/screenshot-2024-05-15-at-5-09-04-pm.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/screenshot-2024-05-15-at-5-21-37-pm.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/sending-data/builds-dashboard.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/sending-data/create-api-key.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/sending-data/initial-settings.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/sending-data/record-session.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/sending-data/test-session-interface.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/shift-left.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/single-session-compared.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/single-session-result.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/slack-desktop-with-app-messages.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/smart-subset-formation-flow.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/smart-tests-builds-interface-v1png.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/smart-tests-cli-3.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/smart-tests-monthly-time-saved.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/smart-tests_api_key_setting_20210613.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/smart-tests_invite_url_20220613.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/smart-tests_settings_20220613.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/subscription-ux.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/subset-creation.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/subset-exclude.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/subsetting-diagram-2x.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/target-line.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/test-insights-example.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/test-pyramid.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/test-runs-log.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/test-session-definition-2.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/test-session-definition-3.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/test-session-definition-4.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/test-session-definition.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/test-session-details-with-content.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/test-session-report-example.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/test-sessions-layout.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/testing-bottleneck-infinity.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/training-wheels.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/trends.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/triage-email-demo.avif +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/use-case-1.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/use-case-2.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/assets/images/zis-with-groups.png +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/nav.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/pages/getting-started.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/pages/index.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/partials/abbr.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/ROOT/partials/conditionals.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/concepts/pages/branch.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/concepts/pages/build.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/concepts/pages/insight.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/concepts/pages/object-model.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/concepts/pages/organization.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/concepts/pages/subset.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/concepts/pages/test-session.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/concepts/pages/test-suite.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/concepts/pages/workspace.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/intelligent-test-failure-diagnostics.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/faq.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/how-we-select-tests.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/observe-subset-behavior.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/request-and-run-a-subset-of-tests/choose-a-subset-optimization-target/choose-a-subset-optimization-target.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/request-and-run-a-subset-of-tests/choose-a-subset-optimization-target/smart-subset-optimization-target.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/request-and-run-a-subset-of-tests/request-and-run-a-subset-of-tests.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/request-and-run-a-subset-of-tests/subset-with-the-smart-tests-cli/combine-with-rule-based-test-selection.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/request-and-run-a-subset-of-tests/subset-with-the-smart-tests-cli/replace-static-parallel-suites-dynamic-parallel-subset.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/request-and-run-a-subset-of-tests/subset-with-the-smart-tests-cli/subset-with-the-smart-tests-cli.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/request-and-run-a-subset-of-tests/subset-with-the-smart-tests-cli/zero-input-subsetting/use-groups-to-split-subsets.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/request-and-run-a-subset-of-tests/subset-with-the-smart-tests-cli/zero-input-subsetting/zero-input-subsetting.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/smart-tests-extension-for-VS-code.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/use-cases-for-predictive-test-selection.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection/viewing-time-savings.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/predictive-test-selection.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/test-notifications/github-app-for-test-sessions.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/test-notifications/test-notifications-via-slack.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/test-notifications.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/test-results-and-reports.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/test-suite-parallelization/parallelize-your-test-suite-with-the-smart-tests-cli.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/test-suite-parallelization.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/trends.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/features/pages/unhealthy-tests.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/ci-tool-integrations/github-actions.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/ci-tool-integrations.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/cli-reference.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/cli-version.txt +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/adb.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/ant.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/bazel.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/behave.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/ctest.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/cucumber.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/cypress.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/dotnet-test.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/flutter.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/go-test.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/googletest.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/gradle.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/jest.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/karma.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/maven.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/minitest.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/playwright.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/prove.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/pytest.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/raw.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/robot.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/rspec.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/use-the-generic-file-based-runner-integration.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/vitest.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations/xctest.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/integrations.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/onboarding-guide/best-practices-checklist.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/onboarding-guide/optional-configurations.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/onboarding-guide.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/policies/data-examples.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/policies/data-privacy-and-protection.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/policies/security-policies.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/policies.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-languages/c-plus-plus.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-languages/dotnet.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-languages/go.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-languages/java.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-languages/javascript.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-languages/perl.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-languages/python.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-languages/ruby.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-languages.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/appium.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/cucumber.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/googletest.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/jest.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/junit.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/minitest.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/nose.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/nunit.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/prove.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/robot.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/rspec.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/selenium.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks/testng.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/supported-test-frameworks.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/resources/pages/troubleshooting.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/getting-started/getting-started.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/getting-started/migration-to-github-oidc-auth.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/getting-started/use-the-cli-with-a-public-repository.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/getting-started/use-the-cli-with-docker-image.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-builds/choose-a-value-for-build-name.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-builds/deal-with-shallow-clones.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-builds/record-builds-from-multiple-repositories.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-builds/record-builds.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-builds/run-under-restricted-networks.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-sessions/record-sessions.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-test-results/attach-log-files.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-test-results/convert-test-reports-to-junit-format.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-test-results/ensure-record-tests-always-runs.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-test-results/manage-complex-test-session-layouts.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-test-results/record-test-results.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-test-results/separate-out-test-suites.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/record-test-results/use-flavors-to-run-the-best-tests-for-an-environment.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/send-data-to-smart-tests.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/docs/modules/send-data-to-smart-tests/pages/subset/subset-predictive-test-selection.adoc +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/jar/exe_deploy.jar +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/plugins/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/adb.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/ant.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/bazel.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/behave.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/codeceptjs.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/ctest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/cts.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/cucumber.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/cypress.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/dotnet.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/file.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/flutter.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/go_test.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/googletest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/gradle.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/jasmine.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/jest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/karma.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/minitest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/nunit.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/prove.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/pytest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/robot.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/rspec.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/smart_tests.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/vitest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/test_runners/xctest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/authentication.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/ci_provider.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/commands.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/commit_ingester.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/common_tz.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/edit_distance.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/env_keys.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/exceptions.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/fail_fast_mode.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/file_name_pattern.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/git_log_parser.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/glob.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/gzipgen.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/input_snapshot.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/java.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/link.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/logger.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/no_build.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/sax.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/session.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/smart_tests_client.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/subprocess.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/tracking.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/utils/typer_types.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests/version.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests_cli.egg-info/dependency_links.txt +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests_cli.egg-info/entry_points.txt +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests_cli.egg-info/requires.txt +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/smart_tests_cli.egg-info/top_level.txt +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/BUILD +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/Authenticator.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/BUILD +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/BackgroundWorkStatus.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/BoundedExecutorService.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/ChunkStreamer.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/CommitChunkStreamer.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/CommitGraphCollector.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/ConcurrentConsumer.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/CountingDiffFormatter.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/FileChunkStreamer.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/FlushableConsumer.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/GitFile.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/GitHubActionsAuthenticator.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/GitHubIdTokenAuthenticator.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/IOConsumer.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/JSAsyncFileCollectionProgress.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/JSAsyncFileCollectionResponse.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/JSCommit.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/JSFileChange.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/LaunchableHttpClient.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/Main.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/ObjectRevFilter.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/ProgressReporter.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/SSLBypass.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/TokenAuthenticator.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/TreeReceiver.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/main/java/com/launchableinc/ingest/commits/VirtualFile.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/maven_install.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/test/java/com/launchableinc/ingest/commits/AllTests.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/test/java/com/launchableinc/ingest/commits/BUILD +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/test/java/com/launchableinc/ingest/commits/BoundedExecutorServiceTest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/test/java/com/launchableinc/ingest/commits/CommitGraphCollectorTest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/test/java/com/launchableinc/ingest/commits/ConcurrentConsumerTest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/test/java/com/launchableinc/ingest/commits/FileChunkStreamerTest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/test/java/com/launchableinc/ingest/commits/MainTest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/test/java/com/launchableinc/ingest/commits/PassThroughTreeReceiverImpl.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/test/java/com/launchableinc/ingest/commits/ProgressReporterTest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/test/java/com/launchableinc/ingest/commits/SSLBypassTest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/src/test/java/com/launchableinc/ingest/commits/java8-compat.sh +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/test-runner/__main__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/args4p/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/args4p/converters/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/args4p/converters/test_converters.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/args4p/test_badcode.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/args4p/test_badinput.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/args4p/test_command.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/args4p/test_decorators.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/args4p/test_help.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/args4p/test_parameter.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/args4p/test_typer.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/cli_test_case.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/compare/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/compare/test_subsets.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/inspect/test_model.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/inspect/test_subset.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/record/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/record/test_attachment.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/record/test_build.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/record/test_case_event.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/record/test_commit.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/record/test_deployment.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/record/test_session.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/record/test_tests.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/test_api_error.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/test_detect_flakes.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/test_gate.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/test_subset.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/test_verify.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/update/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/commands/update/test_alias.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/adb/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ant/junitreport/TEST-com.example.HelloWorldTest.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ant/junitreport/TEST-com.example.library.CacheTest.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ant/junitreport/TESTS-TestSuites.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ant/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ant/src/com/example/HelloWorld.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ant/src/com/example/HelloWorldTest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ant/src/com/example/library/Cache.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ant/src/com/example/library/CacheTest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ant/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test1/test.cache_status +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test1/test.log +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test1/test.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test2/test.cache_status +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test2/test.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test3/test.cache_status +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test3/test.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test4/test.cache_status +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test4/test.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test5/test.cache_status +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test5/test.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test6/test.cache_status +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test6/test.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test7/test.cache_status +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test7/test.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test8/test.cache_status +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test8/test.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test9/test.cache_status +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/bazel-testlogs/src/test/java/com/ninjinkun/mylib_test9/test.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/build_event.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/build_event_rest.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/record_test_with_build_event_json_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/record_test_with_multiple_build_event_json_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/bazel/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/behave/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/behave/reports/report.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/behave/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/broken_xml/broken.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/broken_xml/normal.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/codeceptjs/codeceptjs-result.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/codeceptjs/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ctest/Testing/latest/Test.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ctest/ctest_list.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ctest/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/ctest/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cts/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cts/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cts/test_result.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cucumber/features/foo/bar.feature +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cucumber/features/foo/is_it_friday_yet.feature +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cucumber/features/foo-bar.feature +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cucumber/features/is_it_friday_yet.feature +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cucumber/record_test_json_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cucumber/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cucumber/report/TEST-features-foo-bar.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cucumber/report/TEST-features-foo-is_it_friday_yet.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cucumber/report/TEST-features-is_it_friday_yet.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cucumber/report/dummy.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cucumber/report/result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cypress/empty.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cypress/empty.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cypress/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cypress/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/cypress/test-result.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/dotnet/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/dotnet/test-result.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/file/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/file/record_test_result_custom_attribute.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/file/result.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/file/result_custom_attribute.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/flutter/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/flutter/report.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/git_log_ingest/sample.out +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/go_test/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/go_test/reportv1/reportv1.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/go_test/reportv2/reportv2.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/go_test/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/googletest/fail/output.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/googletest/fail/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/googletest/output_a.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/googletest/output_b.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/googletest/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/googletest/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/gradle/java/app/src/test/java/com/example/sample_app_gradle/App2Test.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/gradle/java/app/src/test/java/com/example/sample_app_gradle/AppTest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/gradle/java/app/src/test/java/com/example/sample_app_gradle/sub/App3Test.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/gradle/recursion/expected.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/gradle/recursion/foo/bar/reports/1.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/jasmine/README.md +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/jasmine/jasmine-test-results-v3.99.0.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/jasmine/jasmine-test-results.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/jasmine/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/jasmine/subset_payload.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/jest/junit.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/jest/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/jest/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/karma/README.md +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/karma/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/karma/sample-report.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/karma/subset_payload.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/karma/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/createdFile_1.lst +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/createdFile_2.lst +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/java/test/src/java/com/example/sample_app_maven/App2Test.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/java/test/src/java/com/example/sample_app_maven/AppTest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/java/test/src/java/com/launchableinc/rocket_car_maven/e2e/E2ETest.java +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/list.lst +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/reports/TEST-1.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/reports/TEST-2.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/reports/TEST-nested.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/reports/dummy.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/subset_by_absolute_time_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/subset_by_confidence_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/subset_from_file_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/subset_scan_test_compile_lst_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/maven/subset_with_exclude_rules_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/minitest/TEST-Admin_UserTest.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/minitest/TEST-Admin_UserTest_ChildlenTest.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/minitest/TEST-UserControllerTest.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/minitest/TEST-UserCopyTest.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/minitest/TEST-UserTest.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/minitest/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/minitest/record_test_result_chunk1.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/minitest/record_test_result_chunk2.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/minitest/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/minitest/test/example_test.rb +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/list.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/nunit-reporter-bug-with-nested-type.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/nunit-reporter-bug-with-nested-type.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/output-linux.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/output-windows.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/record_test_result-linux.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/record_test_result-windows.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/src/.gitignore +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/src/Program.cs +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/src/README.md +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/src/Test.cs +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/src/calc.csproj +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/nunit/subset_result.json +0 -0
- /smart_tests_cli-2.7.1/tests/data/pytest/tests/fooo/__init__.py → /smart_tests_cli-2.7.3/tests/data/playwright/packages/e2e/.gitkeep +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/playwright/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/playwright/record_test_result_with_json.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/playwright/report.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/playwright/report.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/prove/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/prove/report.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/pytest.ini +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/record_test_result_json.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/report.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/report.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/tests/conftest.py +0 -0
- {smart_tests_cli-2.7.1/tests/test_runners → smart_tests_cli-2.7.3/tests/data/pytest/tests/fooo}/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/tests/fooo/filenameonly_test.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/tests/fooo/func4_test.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/tests/funcs3_test.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/tests/test_funcs1.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/pytest/tests/test_funcs2.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/robot/dryrun.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/robot/output.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/robot/record_test_executed_only_one_file_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/robot/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/robot/single-output.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/robot/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/rspec/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/rspec/rspec.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/vitest/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/vitest/report.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/xctest/junit.xml +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/xctest/record_test_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/data/xctest/subset_result.json +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/helper.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/plugins/foo.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_cli_test_case.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_plugin.py +0 -0
- {smart_tests_cli-2.7.1/tests/utils → smart_tests_cli-2.7.3/tests/test_runners}/__init__.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_adb.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_ant.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_bazel.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_behave.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_codeceptjs.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_ctest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_cts.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_cucumber.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_cypress.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_dotnet.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_file.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_go_test.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_googletest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_gradle.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_jasmine.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_jest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_karma.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_minitest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_nunit.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_prove.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_pytest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_robot.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_rspec.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_vitest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_runners/test_xctest.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/test_version.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_authentication.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_edit_distance.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_fail_fast_mode.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_file_name_pattern.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_git_log_parser.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_glob.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_gzipgen.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_link.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_logger.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_session.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_typer.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tests/utils/test_typer_types.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tools/README.md +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/tools/generate_reference.py +0 -0
- {smart_tests_cli-2.7.1 → smart_tests_cli-2.7.3}/uv.lock +0 -0
|
@@ -73,7 +73,7 @@ class SubsetResults(SubsetResultBases[SubsetResult]):
|
|
|
73
73
|
@classmethod
|
|
74
74
|
def load(cls, client: SmartTestsClient, subset_id: int) -> "SubsetResults":
|
|
75
75
|
try:
|
|
76
|
-
response = client.request("get", f"subset/{subset_id}")
|
|
76
|
+
response = client.request("get", f"subset/{subset_id}", timeout=(30, 300))
|
|
77
77
|
if response.status_code == HTTPStatus.NOT_FOUND:
|
|
78
78
|
raise click.ClickException(
|
|
79
79
|
f"Subset {subset_id} not found. Check subset ID and try again."
|
|
@@ -112,7 +112,7 @@ def subset(
|
|
|
112
112
|
rest = []
|
|
113
113
|
client = SmartTestsClient(app=app)
|
|
114
114
|
try:
|
|
115
|
-
res = client.request("get", f"subset/{subset_id}")
|
|
115
|
+
res = client.request("get", f"subset/{subset_id}", timeout=(30, 300))
|
|
116
116
|
|
|
117
117
|
if res.status_code == HTTPStatus.NOT_FOUND:
|
|
118
118
|
click.secho(
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import glob
|
|
2
2
|
import os
|
|
3
3
|
import re
|
|
4
|
+
import xml.etree.ElementTree as ET
|
|
4
5
|
from typing import Annotated, Dict, List
|
|
5
6
|
|
|
6
7
|
import click
|
|
@@ -50,6 +51,33 @@ def is_file(f: str) -> bool:
|
|
|
50
51
|
return False
|
|
51
52
|
|
|
52
53
|
|
|
54
|
+
def parse_surefire_reports() -> List[Dict[str, str]]:
|
|
55
|
+
"""Parse Maven Surefire XML reports from target/surefire-reports/."""
|
|
56
|
+
test_paths = []
|
|
57
|
+
report_pattern = '**/target/surefire-reports/TEST-*.xml'
|
|
58
|
+
report_files = glob.glob(report_pattern, recursive=True)
|
|
59
|
+
|
|
60
|
+
if not report_files:
|
|
61
|
+
return []
|
|
62
|
+
|
|
63
|
+
click.echo(f"Found {len(report_files)} surefire report(s)", err=True)
|
|
64
|
+
|
|
65
|
+
for report_file in report_files:
|
|
66
|
+
try:
|
|
67
|
+
tree = ET.parse(report_file)
|
|
68
|
+
root = tree.getroot()
|
|
69
|
+
classname = root.get('name')
|
|
70
|
+
|
|
71
|
+
if classname:
|
|
72
|
+
test_paths.append({"type": "class", "name": classname})
|
|
73
|
+
|
|
74
|
+
except ET.ParseError as e:
|
|
75
|
+
click.secho(f"Warning: Could not parse {report_file}: {e}", fg='yellow', err=True)
|
|
76
|
+
|
|
77
|
+
click.echo(f"Total tests discovered: {len(test_paths)}", err=True)
|
|
78
|
+
return test_paths
|
|
79
|
+
|
|
80
|
+
|
|
53
81
|
@smart_tests.subset
|
|
54
82
|
def subset(
|
|
55
83
|
client: Subset,
|
|
@@ -73,6 +101,10 @@ def subset(
|
|
|
73
101
|
multiple=True,
|
|
74
102
|
help="Exclude tests matching the given Python regular expression pattern. Can be specified multiple times."
|
|
75
103
|
)] = [],
|
|
104
|
+
is_scan_dryrun_results: Annotated[bool, typer.Option(
|
|
105
|
+
"--scan-dryrun-results",
|
|
106
|
+
help="Scan surefire reports generated by mvn test -DdryRun=true"
|
|
107
|
+
)] = False,
|
|
76
108
|
):
|
|
77
109
|
|
|
78
110
|
# Compile exclude rules
|
|
@@ -109,24 +141,45 @@ def subset(
|
|
|
109
141
|
if source_roots is None:
|
|
110
142
|
source_roots = []
|
|
111
143
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
click.secho(
|
|
116
|
-
"Warning: --test-compile-created-file is overridden by --scan-test-compile-lst",
|
|
117
|
-
fg='yellow', err=True)
|
|
118
|
-
|
|
119
|
-
pattern = os.path.join('**', 'createdFiles.lst')
|
|
120
|
-
files_to_read = glob.glob(pattern, recursive=True)
|
|
144
|
+
if is_scan_dryrun_results:
|
|
145
|
+
click.echo("Scanning Maven dry-run results...", err=True)
|
|
146
|
+
tests = parse_surefire_reports()
|
|
121
147
|
|
|
122
|
-
if not
|
|
148
|
+
if not tests:
|
|
123
149
|
click.secho(
|
|
124
|
-
"Warning: No
|
|
150
|
+
"Warning: No surefire reports found. Did you run 'mvn test -DdryRun=true'?",
|
|
125
151
|
fg='yellow',
|
|
126
|
-
err=True
|
|
152
|
+
err=True
|
|
153
|
+
)
|
|
154
|
+
click.secho(
|
|
155
|
+
"Please run: mvn test -DdryRun=true",
|
|
156
|
+
fg='cyan',
|
|
157
|
+
err=True
|
|
158
|
+
)
|
|
127
159
|
return
|
|
128
160
|
|
|
129
|
-
|
|
161
|
+
# Add tests to client (each test path must be a list)
|
|
162
|
+
for test in tests:
|
|
163
|
+
client.test_paths.append([test])
|
|
164
|
+
|
|
165
|
+
elif is_scan_test_compile_lst or test_compile_created_file:
|
|
166
|
+
if is_scan_test_compile_lst:
|
|
167
|
+
if len(test_compile_created_file) > 0:
|
|
168
|
+
click.echo(click.style(
|
|
169
|
+
"Warning: --test-compile-created-file is overridden by --scan-test-compile-lst", fg="yellow"),
|
|
170
|
+
err=True)
|
|
171
|
+
|
|
172
|
+
pattern = os.path.join('**', 'createdFiles.lst')
|
|
173
|
+
files_to_read = glob.glob(pattern, recursive=True)
|
|
174
|
+
|
|
175
|
+
if not files_to_read:
|
|
176
|
+
click.echo(click.style(
|
|
177
|
+
"Warning: No .lst files. Please run after executing `mvn test-compile`", fg="yellow"),
|
|
178
|
+
err=True)
|
|
179
|
+
return
|
|
180
|
+
elif test_compile_created_file:
|
|
181
|
+
files_to_read = list(test_compile_created_file)
|
|
182
|
+
|
|
130
183
|
for file in files_to_read:
|
|
131
184
|
with open(file, 'r') as f:
|
|
132
185
|
lines = f.readlines()
|
|
@@ -143,6 +196,7 @@ def subset(
|
|
|
143
196
|
path = file2test(line)
|
|
144
197
|
if path:
|
|
145
198
|
client.test_paths.append(path)
|
|
199
|
+
|
|
146
200
|
else:
|
|
147
201
|
for root in source_roots:
|
|
148
202
|
client.scan(root, '**/*', file2test)
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
# https://playwright.dev/
|
|
4
4
|
#
|
|
5
5
|
import json
|
|
6
|
+
from pathlib import Path
|
|
6
7
|
from typing import Annotated, Dict, List
|
|
7
8
|
|
|
8
9
|
import click
|
|
@@ -13,7 +14,7 @@ import smart_tests.args4p.typer as typer
|
|
|
13
14
|
from ..args4p.exceptions import BadCmdLineException
|
|
14
15
|
from ..commands.record.case_event import CaseEvent, CaseEventGenerator
|
|
15
16
|
from ..commands.record.tests import RecordTests
|
|
16
|
-
from ..testpath import TestPath
|
|
17
|
+
from ..testpath import TestPath, prepend_path_if_missing, relative_subpath
|
|
17
18
|
from . import smart_tests
|
|
18
19
|
|
|
19
20
|
TEST_CASE_DELIMITER = " › "
|
|
@@ -180,13 +181,56 @@ class JSONReportParser:
|
|
|
180
181
|
if len(suites) == 0:
|
|
181
182
|
click.echo(f"Can't find test results from {report_file}. Make sure to confirm report file.", err=True)
|
|
182
183
|
|
|
184
|
+
root_dir_relpath = self._compute_root_dir_relpath(data)
|
|
185
|
+
config_dir = self._config_dir(data)
|
|
183
186
|
for s in suites:
|
|
184
187
|
# The title of the root suite object contains the file name.
|
|
185
|
-
test_file = str(s.get("title", ""))
|
|
188
|
+
test_file = self._resolve_test_file(str(s.get("title", "")), root_dir_relpath, config_dir)
|
|
186
189
|
|
|
187
190
|
for event in self._parse_suites(test_file, s, []):
|
|
188
191
|
yield event
|
|
189
192
|
|
|
193
|
+
def _compute_root_dir_relpath(self, report: Dict) -> str:
|
|
194
|
+
"""
|
|
195
|
+
Playwright JSON stores test `file` paths relative to `config.rootDir`.
|
|
196
|
+
Our CLI wants paths relative to the Playwright config directory
|
|
197
|
+
(usually the project/repo root), so we compute:
|
|
198
|
+
relpath(root_dir, base_dir)
|
|
199
|
+
where base_dir = dirname(configFile).
|
|
200
|
+
|
|
201
|
+
Example:
|
|
202
|
+
configFile = /repo/playwright.config.ts
|
|
203
|
+
rootDir = /repo/tests
|
|
204
|
+
relpath(...) -> "tests"
|
|
205
|
+
"""
|
|
206
|
+
config: Dict = report.get("config", {})
|
|
207
|
+
config_dir = self._config_dir(report)
|
|
208
|
+
root_dir = str(config.get("rootDir", ""))
|
|
209
|
+
# TODO: We currently haven't supported the following sibling/parent path cases.
|
|
210
|
+
# configFile = /repo/foo/playwright.config.ts
|
|
211
|
+
# rootDir = /repo/tests
|
|
212
|
+
if config_dir and root_dir:
|
|
213
|
+
return relative_subpath(root_dir, config_dir)
|
|
214
|
+
|
|
215
|
+
return ""
|
|
216
|
+
|
|
217
|
+
def _config_dir(self, report: Dict) -> str:
|
|
218
|
+
config: Dict = report.get("config", {})
|
|
219
|
+
config_file = str(config.get("configFile", ""))
|
|
220
|
+
if config_file:
|
|
221
|
+
return Path(config_file).parent.as_posix()
|
|
222
|
+
|
|
223
|
+
return ""
|
|
224
|
+
|
|
225
|
+
def _resolve_test_file(self, test_file: str, root_dir_relpath: str, config_dir: str) -> str:
|
|
226
|
+
test_file = prepend_path_if_missing(test_file, root_dir_relpath)
|
|
227
|
+
if self.client.base_path and config_dir:
|
|
228
|
+
# When --base is set, hand an absolute path to make_file_path_component()
|
|
229
|
+
# so its existing base_path relativization works as intended.
|
|
230
|
+
return Path(config_dir, test_file).absolute().as_posix()
|
|
231
|
+
|
|
232
|
+
return test_file
|
|
233
|
+
|
|
190
234
|
def _parse_suites(self, test_file: str, suite: Dict[str, Dict], test_case_names: List[str] = []) -> List:
|
|
191
235
|
events = []
|
|
192
236
|
|
|
@@ -16,6 +16,15 @@ from ..testpath import TestPath, parse_test_path, unparse_test_path
|
|
|
16
16
|
from . import smart_tests
|
|
17
17
|
|
|
18
18
|
|
|
19
|
+
def _needs_test_path_file(client: Subset) -> bool:
|
|
20
|
+
"""Check if the client requires test paths to be provided via a file."""
|
|
21
|
+
if client.is_get_tests_from_previous_sessions:
|
|
22
|
+
return False
|
|
23
|
+
if client.input_snapshot_id is not None:
|
|
24
|
+
return False
|
|
25
|
+
return True
|
|
26
|
+
|
|
27
|
+
|
|
19
28
|
@smart_tests.subset
|
|
20
29
|
def subset(
|
|
21
30
|
client: Subset,
|
|
@@ -31,7 +40,7 @@ def subset(
|
|
|
31
40
|
considered as a comment and ignored.
|
|
32
41
|
"""
|
|
33
42
|
|
|
34
|
-
if
|
|
43
|
+
if _needs_test_path_file(client) and test_path_file is None:
|
|
35
44
|
raise BadCmdLineException("Missing argument 'TEST_PATH_FILE'.")
|
|
36
45
|
|
|
37
46
|
if client.is_output_exclusion_rules:
|
|
@@ -39,7 +48,7 @@ def subset(
|
|
|
39
48
|
"Don't need to use `--output-exclusion-rules` option. Please use `--rest` option and use it for exclusion"
|
|
40
49
|
)
|
|
41
50
|
|
|
42
|
-
if
|
|
51
|
+
if _needs_test_path_file(client):
|
|
43
52
|
assert test_path_file is not None # Guaranteed by earlier check
|
|
44
53
|
with open(test_path_file, 'r') as f:
|
|
45
54
|
tps = [s.strip() for s in f.readlines()]
|
|
@@ -88,6 +88,31 @@ def _relative_to(p: pathlib.Path, base: str) -> pathlib.Path:
|
|
|
88
88
|
return p.resolve(strict=False).relative_to(base)
|
|
89
89
|
|
|
90
90
|
|
|
91
|
+
def relative_subpath(path: str, base_path: str) -> str:
|
|
92
|
+
if not path or not base_path:
|
|
93
|
+
return ""
|
|
94
|
+
|
|
95
|
+
try:
|
|
96
|
+
relpath = pathlib.Path(path).relative_to(pathlib.Path(base_path)).as_posix()
|
|
97
|
+
except ValueError:
|
|
98
|
+
return ""
|
|
99
|
+
|
|
100
|
+
if relpath == ".":
|
|
101
|
+
return ""
|
|
102
|
+
|
|
103
|
+
return relpath
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
def prepend_path_if_missing(path: str, prefix: str) -> str:
|
|
107
|
+
if not path or not prefix:
|
|
108
|
+
return path
|
|
109
|
+
|
|
110
|
+
if path.startswith(prefix):
|
|
111
|
+
return path
|
|
112
|
+
|
|
113
|
+
return pathlib.Path(prefix, path).as_posix()
|
|
114
|
+
|
|
115
|
+
|
|
91
116
|
class FilePathNormalizer:
|
|
92
117
|
"""Normalize file paths based on the Git repository root
|
|
93
118
|
|
|
@@ -89,7 +89,8 @@ class _HttpClient:
|
|
|
89
89
|
headers = {**headers, **additional_headers}
|
|
90
90
|
|
|
91
91
|
dry_run_prefix = "(DRY RUN) " if self.dry_run else ""
|
|
92
|
-
|
|
92
|
+
sanitized_headers = _sanitize_headers(headers)
|
|
93
|
+
Logger().audit(f"{dry_run_prefix}send request method:{method} path:{url} headers:{sanitized_headers} args:{payload}")
|
|
93
94
|
|
|
94
95
|
if self.dry_run and method.upper() not in ["HEAD", "GET"]:
|
|
95
96
|
return DryRunResponse(status_code=200, payload={
|
|
@@ -165,5 +166,18 @@ def _build_data(payload: Union[BinaryIO, Dict] | None, compress: bool):
|
|
|
165
166
|
return payload
|
|
166
167
|
|
|
167
168
|
|
|
169
|
+
def _sanitize_headers(headers: Dict) -> Dict:
|
|
170
|
+
"""
|
|
171
|
+
Returns a copy of headers with sensitive values redacted for logging.
|
|
172
|
+
"""
|
|
173
|
+
sanitized = headers.copy()
|
|
174
|
+
if 'Authorization' in sanitized:
|
|
175
|
+
auth_value = sanitized['Authorization']
|
|
176
|
+
if auth_value.startswith('Bearer '):
|
|
177
|
+
# Redact the token but keep the "Bearer " prefix
|
|
178
|
+
sanitized['Authorization'] = 'Bearer [REDACTED]'
|
|
179
|
+
return sanitized
|
|
180
|
+
|
|
181
|
+
|
|
168
182
|
def _join_paths(*components):
|
|
169
183
|
return '/'.join([c.strip('/') for c in components])
|
|
@@ -510,6 +510,7 @@ tests/data/karma/record_test_result.json
|
|
|
510
510
|
tests/data/karma/sample-report.json
|
|
511
511
|
tests/data/karma/subset_payload.json
|
|
512
512
|
tests/data/karma/subset_result.json
|
|
513
|
+
tests/data/maven/README.md
|
|
513
514
|
tests/data/maven/createdFile_1.lst
|
|
514
515
|
tests/data/maven/createdFile_2.lst
|
|
515
516
|
tests/data/maven/list.lst
|
|
@@ -520,6 +521,12 @@ tests/data/maven/subset_from_file_result.json
|
|
|
520
521
|
tests/data/maven/subset_result.json
|
|
521
522
|
tests/data/maven/subset_scan_test_compile_lst_result.json
|
|
522
523
|
tests/data/maven/subset_with_exclude_rules_result.json
|
|
524
|
+
tests/data/maven/dryrun-test/target/surefire-reports/TEST-com.example.excludetestapplication.ExcludeTestApplicationTests.xml
|
|
525
|
+
tests/data/maven/dryrun-test/target/surefire-reports/TEST-com.launchable.demo.CalculatorTest.xml
|
|
526
|
+
tests/data/maven/dryrun-test/target/surefire-reports/TEST-com.launchable.demo.MixedTagsTest.xml
|
|
527
|
+
tests/data/maven/dryrun-test/target/surefire-reports/com.example.excludetestapplication.ExcludeTestApplicationTests.txt
|
|
528
|
+
tests/data/maven/dryrun-test/target/surefire-reports/com.launchable.demo.CalculatorTest.txt
|
|
529
|
+
tests/data/maven/dryrun-test/target/surefire-reports/com.launchable.demo.MixedTagsTest.txt
|
|
523
530
|
tests/data/maven/java/test/src/java/com/example/sample_app_maven/App2Test.java
|
|
524
531
|
tests/data/maven/java/test/src/java/com/example/sample_app_maven/AppTest.java
|
|
525
532
|
tests/data/maven/java/test/src/java/com/launchableinc/rocket_car_maven/e2e/E2ETest.java
|
|
@@ -550,10 +557,16 @@ tests/data/nunit/src/Program.cs
|
|
|
550
557
|
tests/data/nunit/src/README.md
|
|
551
558
|
tests/data/nunit/src/Test.cs
|
|
552
559
|
tests/data/nunit/src/calc.csproj
|
|
560
|
+
tests/data/playwright/playwright.config.ts
|
|
553
561
|
tests/data/playwright/record_test_result.json
|
|
554
562
|
tests/data/playwright/record_test_result_with_json.json
|
|
563
|
+
tests/data/playwright/record_test_result_with_json_base.json
|
|
564
|
+
tests/data/playwright/record_test_result_with_prefix.json
|
|
555
565
|
tests/data/playwright/report.json
|
|
556
566
|
tests/data/playwright/report.xml
|
|
567
|
+
tests/data/playwright/report_with_json_base.json
|
|
568
|
+
tests/data/playwright/report_with_prefix.json
|
|
569
|
+
tests/data/playwright/packages/e2e/.gitkeep
|
|
557
570
|
tests/data/prove/record_test_result.json
|
|
558
571
|
tests/data/prove/report.xml
|
|
559
572
|
tests/data/pytest/pytest.ini
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# Maven Test Data
|
|
2
|
+
|
|
3
|
+
This directory contains test fixtures for the Maven test runner, including sample Maven Surefire reports used to test the `--scan-dryrun-results` feature.
|
|
4
|
+
|
|
5
|
+
## Directory Structure
|
|
6
|
+
|
|
7
|
+
- `dryrun-test/` - Test data for the `--scan-dryrun-results` feature
|
|
8
|
+
- `target/surefire-reports/` - Sample Maven Surefire reports (XML and TXT formats)
|
|
9
|
+
- `reports/` - Sample test result XML files for various test scenarios
|
|
10
|
+
|
|
11
|
+
## How to Test Manually with Your Own Project
|
|
12
|
+
|
|
13
|
+
To manually test the `--scan-dryrun-results` feature with your own Maven project:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# 1. Navigate to your Maven project
|
|
17
|
+
cd /path/to/your/maven-project
|
|
18
|
+
|
|
19
|
+
# 2. Run Maven dry-run to generate reports
|
|
20
|
+
mvn test -DdryRun=true
|
|
21
|
+
|
|
22
|
+
# 3. Verify reports were created
|
|
23
|
+
ls -la target/surefire-reports/TEST-*.xml
|
|
24
|
+
|
|
25
|
+
# 4. Set up environment (if not already set)
|
|
26
|
+
export LAUNCHABLE_TOKEN='v1:your-org/your-workspace:your-actual-token'
|
|
27
|
+
|
|
28
|
+
# 5. Record build
|
|
29
|
+
launchable record build --name 'test-build-name'
|
|
30
|
+
|
|
31
|
+
# 6. Create a session
|
|
32
|
+
launchable record session --build 'test-build-name'
|
|
33
|
+
# Copy the session ID from output, e.g., builds/test-build-name/test_sessions/123
|
|
34
|
+
|
|
35
|
+
# 7. Run subset with --scan-dryrun-results
|
|
36
|
+
launchable subset maven \
|
|
37
|
+
--scan-dryrun-results \
|
|
38
|
+
--session builds/test-build-name/test_sessions/123 \
|
|
39
|
+
--target 10%
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Creating Test Files for `--scan-dryrun-results`
|
|
43
|
+
|
|
44
|
+
The test files in `dryrun-test/target/surefire-reports/` are fixtures that simulate Maven Surefire reports generated by running tests with Maven's dry-run mode.
|
|
45
|
+
|
|
46
|
+
**Source:** These fixtures were generated from the [smart-tests-integration-examples](https://github.com/cloudbees-oss/smart-tests-integration-examples) repository, specifically from `maven/test-exclusion` project.
|
|
47
|
+
|
|
48
|
+
### How to Create/Update These Files
|
|
49
|
+
|
|
50
|
+
The `dryrun-test/` directory contains only the generated reports as test fixtures. To create or update these files:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
# 1. Clone the integration examples repository
|
|
54
|
+
git clone https://github.com/cloudbees-oss/smart-tests-integration-examples.git
|
|
55
|
+
cd smart-tests-integration-examples/maven/test-exclusion
|
|
56
|
+
|
|
57
|
+
# 2. Run Maven dry-run to generate Surefire reports
|
|
58
|
+
mvn test -DdryRun=true
|
|
59
|
+
|
|
60
|
+
# 3. Copy the generated reports to this repository
|
|
61
|
+
cp target/surefire-reports/TEST-*.xml /path/to/smart-tests-cli/tests/data/maven/dryrun-test/target/surefire-reports/
|
|
62
|
+
cp target/surefire-reports/*.txt /path/to/smart-tests-cli/tests/data/maven/dryrun-test/target/surefire-reports/
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
The reports include:
|
|
66
|
+
- XML files: `TEST-*.xml` (detailed test execution results with test class names)
|
|
67
|
+
- TXT files: `*.txt` (summary information for each test class)
|
|
68
|
+
|
|
69
|
+
### Purpose
|
|
70
|
+
|
|
71
|
+
These fixtures are used to test:
|
|
72
|
+
- Parsing of Maven Surefire XML reports
|
|
73
|
+
- The `--scan-dryrun-results` flag functionality
|
|
74
|
+
- Integration with Launchable's subset API
|
|
75
|
+
- Handling of filtered/excluded tests
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report-3.0.xsd" version="3.0" name="com.example.excludetestapplication.ExcludeTestApplicationTests" time="0.898" tests="1" errors="0" skipped="0" failures="0">
|
|
3
|
+
<properties>
|
|
4
|
+
<property name="java.specification.version" value="17"/>
|
|
5
|
+
<property name="sun.jnu.encoding" value="UTF-8"/>
|
|
6
|
+
<property name="java.class.path" value="/Users/psakthivel/IdeaProjects/excludeTestApplication/target/test-classes:/Users/psakthivel/IdeaProjects/excludeTestApplication/target/classes:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-starter/4.0.5/spring-boot-starter-4.0.5.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-starter-logging/4.0.5/spring-boot-starter-logging-4.0.5.jar:/Users/psakthivel/.m2/repository/ch/qos/logback/logback-classic/1.5.32/logback-classic-1.5.32.jar:/Users/psakthivel/.m2/repository/ch/qos/logback/logback-core/1.5.32/logback-core-1.5.32.jar:/Users/psakthivel/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.25.3/log4j-to-slf4j-2.25.3.jar:/Users/psakthivel/.m2/repository/org/apache/logging/log4j/log4j-api/2.25.3/log4j-api-2.25.3.jar:/Users/psakthivel/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/4.0.5/spring-boot-autoconfigure-4.0.5.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot/4.0.5/spring-boot-4.0.5.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-context/7.0.6/spring-context-7.0.6.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-aop/7.0.6/spring-aop-7.0.6.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-beans/7.0.6/spring-beans-7.0.6.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-expression/7.0.6/spring-expression-7.0.6.jar:/Users/psakthivel/.m2/repository/io/micrometer/micrometer-observation/1.16.4/micrometer-observation-1.16.4.jar:/Users/psakthivel/.m2/repository/io/micrometer/micrometer-commons/1.16.4/micrometer-commons-1.16.4.jar:/Users/psakthivel/.m2/repository/jakarta/annotation/jakarta.annotation-api/3.0.0/jakarta.annotation-api-3.0.0.jar:/Users/psakthivel/.m2/repository/org/yaml/snakeyaml/2.5/snakeyaml-2.5.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-starter-test/4.0.5/spring-boot-starter-test-4.0.5.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-test/4.0.5/spring-boot-test-4.0.5.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/4.0.5/spring-boot-test-autoconfigure-4.0.5.jar:/Users/psakthivel/.m2/repository/com/jayway/jsonpath/json-path/2.10.0/json-path-2.10.0.jar:/Users/psakthivel/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar:/Users/psakthivel/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.4/jakarta.xml.bind-api-4.0.4.jar:/Users/psakthivel/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.4/jakarta.activation-api-2.1.4.jar:/Users/psakthivel/.m2/repository/net/minidev/json-smart/2.6.0/json-smart-2.6.0.jar:/Users/psakthivel/.m2/repository/net/minidev/accessors-smart/2.6.0/accessors-smart-2.6.0.jar:/Users/psakthivel/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar:/Users/psakthivel/.m2/repository/org/awaitility/awaitility/4.3.0/awaitility-4.3.0.jar:/Users/psakthivel/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.jar:/Users/psakthivel/.m2/repository/org/junit/jupiter/junit-jupiter/6.0.3/junit-jupiter-6.0.3.jar:/Users/psakthivel/.m2/repository/org/junit/jupiter/junit-jupiter-api/6.0.3/junit-jupiter-api-6.0.3.jar:/Users/psakthivel/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar:/Users/psakthivel/.m2/repository/org/junit/platform/junit-platform-commons/6.0.3/junit-platform-commons-6.0.3.jar:/Users/psakthivel/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar:/Users/psakthivel/.m2/repository/org/junit/jupiter/junit-jupiter-params/6.0.3/junit-jupiter-params-6.0.3.jar:/Users/psakthivel/.m2/repository/org/junit/jupiter/junit-jupiter-engine/6.0.3/junit-jupiter-engine-6.0.3.jar:/Users/psakthivel/.m2/repository/org/junit/platform/junit-platform-engine/6.0.3/junit-platform-engine-6.0.3.jar:/Users/psakthivel/.m2/repository/org/mockito/mockito-core/5.20.0/mockito-core-5.20.0.jar:/Users/psakthivel/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.8/byte-buddy-agent-1.17.8.jar:/Users/psakthivel/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.jar:/Users/psakthivel/.m2/repository/org/mockito/mockito-junit-jupiter/5.20.0/mockito-junit-jupiter-5.20.0.jar:/Users/psakthivel/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.jar:/Users/psakthivel/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-core/7.0.6/spring-core-7.0.6.jar:/Users/psakthivel/.m2/repository/commons-logging/commons-logging/1.3.6/commons-logging-1.3.6.jar:/Users/psakthivel/.m2/repository/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-test/7.0.6/spring-test-7.0.6.jar:/Users/psakthivel/.m2/repository/org/xmlunit/xmlunit-core/2.10.4/xmlunit-core-2.10.4.jar:/Users/psakthivel/.m2/repository/org/assertj/assertj-core/3.25.3/assertj-core-3.25.3.jar:/Users/psakthivel/.m2/repository/net/bytebuddy/byte-buddy/1.17.8/byte-buddy-1.17.8.jar:"/>
|
|
7
|
+
<property name="java.vm.vendor" value="Eclipse Adoptium"/>
|
|
8
|
+
<property name="sun.arch.data.model" value="64"/>
|
|
9
|
+
<property name="java.vendor.url" value="https://adoptium.net/"/>
|
|
10
|
+
<property name="user.timezone" value="Asia/Kolkata"/>
|
|
11
|
+
<property name="os.name" value="Mac OS X"/>
|
|
12
|
+
<property name="java.vm.specification.version" value="17"/>
|
|
13
|
+
<property name="APPLICATION_NAME" value="excludeTestApplication"/>
|
|
14
|
+
<property name="sun.java.launcher" value="SUN_STANDARD"/>
|
|
15
|
+
<property name="user.country" value="US"/>
|
|
16
|
+
<property name="sun.boot.library.path" value="/Users/psakthivel/Library/Java/JavaVirtualMachines/temurin-17.0.18/Contents/Home/lib"/>
|
|
17
|
+
<property name="sun.java.command" value="/Users/psakthivel/IdeaProjects/excludeTestApplication/target/surefire/surefirebooter-20260414211750501_3.jar /Users/psakthivel/IdeaProjects/excludeTestApplication/target/surefire 2026-04-14T21-17-50_462-jvmRun1 surefire-20260414211750501_1tmp surefire_0-20260414211750501_2tmp"/>
|
|
18
|
+
<property name="http.nonProxyHosts" value="local|*.local|169.254/16|*.169.254/16"/>
|
|
19
|
+
<property name="jdk.debug" value="release"/>
|
|
20
|
+
<property name="surefire.test.class.path" value="/Users/psakthivel/IdeaProjects/excludeTestApplication/target/test-classes:/Users/psakthivel/IdeaProjects/excludeTestApplication/target/classes:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-starter/4.0.5/spring-boot-starter-4.0.5.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-starter-logging/4.0.5/spring-boot-starter-logging-4.0.5.jar:/Users/psakthivel/.m2/repository/ch/qos/logback/logback-classic/1.5.32/logback-classic-1.5.32.jar:/Users/psakthivel/.m2/repository/ch/qos/logback/logback-core/1.5.32/logback-core-1.5.32.jar:/Users/psakthivel/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.25.3/log4j-to-slf4j-2.25.3.jar:/Users/psakthivel/.m2/repository/org/apache/logging/log4j/log4j-api/2.25.3/log4j-api-2.25.3.jar:/Users/psakthivel/.m2/repository/org/slf4j/jul-to-slf4j/2.0.17/jul-to-slf4j-2.0.17.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/4.0.5/spring-boot-autoconfigure-4.0.5.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot/4.0.5/spring-boot-4.0.5.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-context/7.0.6/spring-context-7.0.6.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-aop/7.0.6/spring-aop-7.0.6.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-beans/7.0.6/spring-beans-7.0.6.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-expression/7.0.6/spring-expression-7.0.6.jar:/Users/psakthivel/.m2/repository/io/micrometer/micrometer-observation/1.16.4/micrometer-observation-1.16.4.jar:/Users/psakthivel/.m2/repository/io/micrometer/micrometer-commons/1.16.4/micrometer-commons-1.16.4.jar:/Users/psakthivel/.m2/repository/jakarta/annotation/jakarta.annotation-api/3.0.0/jakarta.annotation-api-3.0.0.jar:/Users/psakthivel/.m2/repository/org/yaml/snakeyaml/2.5/snakeyaml-2.5.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-starter-test/4.0.5/spring-boot-starter-test-4.0.5.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-test/4.0.5/spring-boot-test-4.0.5.jar:/Users/psakthivel/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/4.0.5/spring-boot-test-autoconfigure-4.0.5.jar:/Users/psakthivel/.m2/repository/com/jayway/jsonpath/json-path/2.10.0/json-path-2.10.0.jar:/Users/psakthivel/.m2/repository/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar:/Users/psakthivel/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.4/jakarta.xml.bind-api-4.0.4.jar:/Users/psakthivel/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.4/jakarta.activation-api-2.1.4.jar:/Users/psakthivel/.m2/repository/net/minidev/json-smart/2.6.0/json-smart-2.6.0.jar:/Users/psakthivel/.m2/repository/net/minidev/accessors-smart/2.6.0/accessors-smart-2.6.0.jar:/Users/psakthivel/.m2/repository/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar:/Users/psakthivel/.m2/repository/org/awaitility/awaitility/4.3.0/awaitility-4.3.0.jar:/Users/psakthivel/.m2/repository/org/hamcrest/hamcrest/3.0/hamcrest-3.0.jar:/Users/psakthivel/.m2/repository/org/junit/jupiter/junit-jupiter/6.0.3/junit-jupiter-6.0.3.jar:/Users/psakthivel/.m2/repository/org/junit/jupiter/junit-jupiter-api/6.0.3/junit-jupiter-api-6.0.3.jar:/Users/psakthivel/.m2/repository/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar:/Users/psakthivel/.m2/repository/org/junit/platform/junit-platform-commons/6.0.3/junit-platform-commons-6.0.3.jar:/Users/psakthivel/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar:/Users/psakthivel/.m2/repository/org/junit/jupiter/junit-jupiter-params/6.0.3/junit-jupiter-params-6.0.3.jar:/Users/psakthivel/.m2/repository/org/junit/jupiter/junit-jupiter-engine/6.0.3/junit-jupiter-engine-6.0.3.jar:/Users/psakthivel/.m2/repository/org/junit/platform/junit-platform-engine/6.0.3/junit-platform-engine-6.0.3.jar:/Users/psakthivel/.m2/repository/org/mockito/mockito-core/5.20.0/mockito-core-5.20.0.jar:/Users/psakthivel/.m2/repository/net/bytebuddy/byte-buddy-agent/1.17.8/byte-buddy-agent-1.17.8.jar:/Users/psakthivel/.m2/repository/org/objenesis/objenesis/3.3/objenesis-3.3.jar:/Users/psakthivel/.m2/repository/org/mockito/mockito-junit-jupiter/5.20.0/mockito-junit-jupiter-5.20.0.jar:/Users/psakthivel/.m2/repository/org/skyscreamer/jsonassert/1.5.3/jsonassert-1.5.3.jar:/Users/psakthivel/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-core/7.0.6/spring-core-7.0.6.jar:/Users/psakthivel/.m2/repository/commons-logging/commons-logging/1.3.6/commons-logging-1.3.6.jar:/Users/psakthivel/.m2/repository/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar:/Users/psakthivel/.m2/repository/org/springframework/spring-test/7.0.6/spring-test-7.0.6.jar:/Users/psakthivel/.m2/repository/org/xmlunit/xmlunit-core/2.10.4/xmlunit-core-2.10.4.jar:/Users/psakthivel/.m2/repository/org/assertj/assertj-core/3.25.3/assertj-core-3.25.3.jar:/Users/psakthivel/.m2/repository/net/bytebuddy/byte-buddy/1.17.8/byte-buddy-1.17.8.jar:"/>
|
|
21
|
+
<property name="sun.cpu.endian" value="little"/>
|
|
22
|
+
<property name="user.home" value="/Users/psakthivel"/>
|
|
23
|
+
<property name="user.language" value="en"/>
|
|
24
|
+
<property name="java.specification.vendor" value="Oracle Corporation"/>
|
|
25
|
+
<property name="java.version.date" value="2026-01-20"/>
|
|
26
|
+
<property name="java.home" value="/Users/psakthivel/Library/Java/JavaVirtualMachines/temurin-17.0.18/Contents/Home"/>
|
|
27
|
+
<property name="file.separator" value="/"/>
|
|
28
|
+
<property name="basedir" value="/Users/psakthivel/IdeaProjects/excludeTestApplication"/>
|
|
29
|
+
<property name="java.vm.compressedOopsMode" value="Zero based"/>
|
|
30
|
+
<property name="line.separator" value=" "/>
|
|
31
|
+
<property name="java.vm.specification.vendor" value="Oracle Corporation"/>
|
|
32
|
+
<property name="java.specification.name" value="Java Platform API Specification"/>
|
|
33
|
+
<property name="FILE_LOG_CHARSET" value="UTF-8"/>
|
|
34
|
+
<property name="java.awt.headless" value="true"/>
|
|
35
|
+
<property name="surefire.real.class.path" value="/Users/psakthivel/IdeaProjects/excludeTestApplication/target/surefire/surefirebooter-20260414211750501_3.jar"/>
|
|
36
|
+
<property name="dryRun" value="true"/>
|
|
37
|
+
<property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/>
|
|
38
|
+
<property name="ftp.nonProxyHosts" value="local|*.local|169.254/16|*.169.254/16"/>
|
|
39
|
+
<property name="java.runtime.version" value="17.0.18+8"/>
|
|
40
|
+
<property name="user.name" value="psakthivel"/>
|
|
41
|
+
<property name="path.separator" value=":"/>
|
|
42
|
+
<property name="os.version" value="26.4"/>
|
|
43
|
+
<property name="java.runtime.name" value="OpenJDK Runtime Environment"/>
|
|
44
|
+
<property name="file.encoding" value="UTF-8"/>
|
|
45
|
+
<property name="java.vm.name" value="OpenJDK 64-Bit Server VM"/>
|
|
46
|
+
<property name="java.vendor.version" value="Temurin-17.0.18+8"/>
|
|
47
|
+
<property name="localRepository" value="/Users/psakthivel/.m2/repository"/>
|
|
48
|
+
<property name="java.vendor.url.bug" value="https://github.com/adoptium/adoptium-support/issues"/>
|
|
49
|
+
<property name="java.io.tmpdir" value="/var/folders/_t/38qjvns154z3_l_y000zv_j80000gn/T/"/>
|
|
50
|
+
<property name="java.version" value="17.0.18"/>
|
|
51
|
+
<property name="user.dir" value="/Users/psakthivel/IdeaProjects/excludeTestApplication"/>
|
|
52
|
+
<property name="os.arch" value="aarch64"/>
|
|
53
|
+
<property name="java.vm.specification.name" value="Java Virtual Machine Specification"/>
|
|
54
|
+
<property name="PID" value="39004"/>
|
|
55
|
+
<property name="CONSOLE_LOG_CHARSET" value="UTF-8"/>
|
|
56
|
+
<property name="native.encoding" value="UTF-8"/>
|
|
57
|
+
<property name="java.library.path" value="/Users/psakthivel/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:."/>
|
|
58
|
+
<property name="java.vm.info" value="mixed mode, sharing"/>
|
|
59
|
+
<property name="java.vendor" value="Eclipse Adoptium"/>
|
|
60
|
+
<property name="java.vm.version" value="17.0.18+8"/>
|
|
61
|
+
<property name="java.specification.maintenance.version" value="1"/>
|
|
62
|
+
<property name="sun.io.unicode.encoding" value="UnicodeBig"/>
|
|
63
|
+
<property name="socksNonProxyHosts" value="local|*.local|169.254/16|*.169.254/16"/>
|
|
64
|
+
<property name="java.class.version" value="61.0"/>
|
|
65
|
+
<property name="LOGGED_APPLICATION_NAME" value="[excludeTestApplication] "/>
|
|
66
|
+
</properties>
|
|
67
|
+
<testcase name="contextLoads" classname="com.example.excludetestapplication.ExcludeTestApplicationTests" time="0.348">
|
|
68
|
+
<system-out><![CDATA[21:17:50.886 [main] INFO org.springframework.test.context.support.AnnotationConfigContextLoaderUtils -- Could not detect default configuration classes for test class [com.example.excludetestapplication.ExcludeTestApplicationTests]: ExcludeTestApplicationTests does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
|
|
69
|
+
21:17:50.922 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper -- Found @SpringBootConfiguration com.example.excludetestapplication.ExcludeTestApplication for test class com.example.excludetestapplication.ExcludeTestApplicationTests
|
|
70
|
+
21:17:50.952 [main] INFO org.springframework.test.context.support.AnnotationConfigContextLoaderUtils -- Could not detect default configuration classes for test class [com.example.excludetestapplication.ExcludeTestApplicationTests]: ExcludeTestApplicationTests does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
|
|
71
|
+
21:17:50.953 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper -- Found @SpringBootConfiguration com.example.excludetestapplication.ExcludeTestApplication for test class com.example.excludetestapplication.ExcludeTestApplicationTests
|
|
72
|
+
|
|
73
|
+
. ____ _ __ _ _
|
|
74
|
+
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
|
|
75
|
+
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
|
|
76
|
+
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
|
|
77
|
+
' |____| .__|_| |_|_| |_\__, | / / / /
|
|
78
|
+
=========|_|==============|___/=/_/_/_/
|
|
79
|
+
|
|
80
|
+
:: Spring Boot :: (v4.0.5)
|
|
81
|
+
|
|
82
|
+
2026-04-14T21:17:51.113+05:30 INFO 39004 --- [excludeTestApplication] [ main] c.e.e.ExcludeTestApplicationTests : Starting ExcludeTestApplicationTests using Java 17.0.18 with PID 39004 (started by psakthivel in /Users/psakthivel/IdeaProjects/excludeTestApplication)
|
|
83
|
+
2026-04-14T21:17:51.114+05:30 INFO 39004 --- [excludeTestApplication] [ main] c.e.e.ExcludeTestApplicationTests : No active profile set, falling back to 1 default profile: "default"
|
|
84
|
+
2026-04-14T21:17:51.371+05:30 INFO 39004 --- [excludeTestApplication] [ main] c.e.e.ExcludeTestApplicationTests : Started ExcludeTestApplicationTests in 0.393 seconds (process running for 0.81)
|
|
85
|
+
]]></system-out>
|
|
86
|
+
</testcase>
|
|
87
|
+
</testsuite>
|