123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #
- # Copyright (c) Contributors to the Open 3D Engine Project.
- # For complete copyright and license terms please see the LICENSE at the root of this distribution.
- #
- # SPDX-License-Identifier: Apache-2.0 OR MIT
- #
- #
- MARS_JOB_KEY = "job"
- BUILD_NUMBER_KEY = "build_number"
- SRC_COMMIT_KEY = "src_commit"
- DST_COMMIT_KEY = "dst_commit"
- COMMIT_DISTANCE_KEY = "commit_distance"
- SRC_BRANCH_KEY = "src_branch"
- DST_BRANCH_KEY = "dst_branch"
- SUITES_KEY = "suites"
- LABEL_EXCLUDES_KEY = "label_excludes"
- SOURCE_OF_TRUTH_BRANCH_KEY = "source_of_truth_branch"
- IS_SOURCE_OF_TRUTH_BRANCH_KEY = "is_source_of_truth_branch"
- USE_TEST_IMPACT_ANALYSIS_KEY = "use_test_impact_analysis"
- HAS_CHANGE_LIST_KEY = "has_change_list"
- HAS_HISTORIC_DATA_KEY = "has_historic_data"
- S3_BUCKET_KEY = "s3_bucket"
- DRIVER_ARGS_KEY = "driver_args"
- RUNTIME_ARGS_KEY = "runtime_args"
- RUNTIME_RETURN_CODE_KEY = "return_code"
- RUNTIME_TYPE_KEY = "runtime_type"
- NAME_KEY = "name"
- RESULT_KEY = "result"
- NUM_PASSING_TESTS_KEY = "num_passing_tests"
- NUM_FAILING_TESTS_KEY = "num_failing_tests"
- NUM_DISABLED_TESTS_KEY = "num_disabled_tests"
- COMMAND_ARGS_STRING = "command_args"
- NUM_PASSING_TEST_RUNS_KEY = "num_passing_test_runs"
- NUM_FAILING_TEST_RUNS_KEY = "num_failing_test_runs"
- NUM_EXECUTION_FAILURE_TEST_RUNS_KEY = "num_execution_failure_test_runs"
- NUM_TIMED_OUT_TEST_RUNS_KEY = "num_timed_out_test_runs"
- NUM_UNEXECUTED_TEST_RUNS_KEY = "num_unexecuted_test_runs"
- TOTAL_NUM_PASSING_TESTS_KEY = "total_num_passing_tests"
- TOTAL_NUM_FAILING_TESTS_KEY = "total_num_failing_tests"
- TOTAL_NUM_DISABLED_TESTS_KEY = "total_num_disabled_tests"
- START_TIME_KEY = "start_time"
- END_TIME_KEY = "end_time"
- DURATION_KEY = "duration"
- INCLUDED_TEST_RUNS_KEY = "included_test_runs"
- EXCLUDED_TEST_RUNS_KEY = "excluded_test_runs"
- NUM_INCLUDED_TEST_RUNS_KEY = "num_included_test_runs"
- NUM_EXCLUDED_TEST_RUNS_KEY = "num_excluded_test_runs"
- TOTAL_NUM_TEST_RUNS_KEY = "total_num_test_runs"
- PASSING_TEST_RUNS_KEY = "passing_test_runs"
- FAILING_TEST_RUNS_KEY = "failing_test_runs"
- EXECUTION_FAILURE_TEST_RUNS_KEY = "execution_failure_test_runs"
- TIMED_OUT_TEST_RUNS_KEY = "timed_out_test_runs"
- UNEXECUTED_TEST_RUNS_KEY = "unexecuted_test_runs"
- TOTAL_NUM_PASSING_TEST_RUNS_KEY = "total_num_passing_test_runs"
- TOTAL_NUM_FAILING_TEST_RUNS_KEY = "total_num_failing_test_runs"
- TOTAL_NUM_EXECUTION_FAILURE_TEST_RUNS_KEY = "total_num_execution_failure_test_runs"
- TOTAL_NUM_TIMED_OUT_TEST_RUNS_KEY = "total_num_timed_out_test_runs"
- TOTAL_NUM_UNEXECUTED_TEST_RUNS_KEY = "total_num_unexecuted_test_runs"
- SEQUENCE_TYPE_KEY = "type"
- IMPACT_ANALYSIS_SEQUENCE_TYPE_KEY = "impact_analysis"
- SAFE_IMPACT_ANALYSIS_SEQUENCE_TYPE_KEY = "safe_impact_analysis"
- SEED_SEQUENCE_TYPE_KEY = "seed"
- TEST_TARGET_TIMEOUT_KEY = "test_target_timeout"
- GLOBAL_TIMEOUT_KEY = "global_timeout"
- MAX_CONCURRENCY_KEY = "max_concurrency"
- SELECTED_KEY = "selected"
- DRAFTED_KEY = "drafted"
- DISCARDED_KEY = "discarded"
- SELECTED_TEST_RUN_REPORT_KEY = "selected_test_run_report"
- DISCARDED_TEST_RUN_REPORT_KEY = "discarded_test_run_report"
- DRAFTED_TEST_RUN_REPORT_KEY = "drafted_test_run_report"
- SELECTED_TEST_RUNS_KEY = "selected_test_runs"
- DRAFTED_TEST_RUNS_KEY = "drafted_test_runs"
- DISCARDED_TEST_RUNS_KEY = "discarded_test_runs"
- INSTRUMENTATION_KEY = "instrumentation"
- EFFICIENCY_KEY = "efficiency"
- CONFIG_KEY = "config"
- POLICY_KEY = "policy"
- CHANGE_LIST_KEY = "change_list"
- TEST_RUN_SELECTION_KEY = "test_run_selection"
- DYNAMIC_DEPENDENCY_MAP_POLICY_KEY = "dynamic_dependency_map"
- DYNAMIC_DEPENDENCY_MAP_POLICY_UPDATE_KEY = "update"
- REPORT_KEY = "report"
- MISMATCHED_TESTS_KEY = "mismatched_tests"
- MISMATCHED_TESTS_COUNT_KEY = "mismatched_tests_count"
|