tiaf_report_constants.py 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. #
  7. #
  8. MARS_JOB_KEY = "job"
  9. BUILD_NUMBER_KEY = "build_number"
  10. SRC_COMMIT_KEY = "src_commit"
  11. DST_COMMIT_KEY = "dst_commit"
  12. COMMIT_DISTANCE_KEY = "commit_distance"
  13. SRC_BRANCH_KEY = "src_branch"
  14. DST_BRANCH_KEY = "dst_branch"
  15. SUITES_KEY = "suites"
  16. LABEL_EXCLUDES_KEY = "label_excludes"
  17. SOURCE_OF_TRUTH_BRANCH_KEY = "source_of_truth_branch"
  18. IS_SOURCE_OF_TRUTH_BRANCH_KEY = "is_source_of_truth_branch"
  19. USE_TEST_IMPACT_ANALYSIS_KEY = "use_test_impact_analysis"
  20. HAS_CHANGE_LIST_KEY = "has_change_list"
  21. HAS_HISTORIC_DATA_KEY = "has_historic_data"
  22. S3_BUCKET_KEY = "s3_bucket"
  23. DRIVER_ARGS_KEY = "driver_args"
  24. RUNTIME_ARGS_KEY = "runtime_args"
  25. RUNTIME_RETURN_CODE_KEY = "return_code"
  26. RUNTIME_TYPE_KEY = "runtime_type"
  27. NAME_KEY = "name"
  28. RESULT_KEY = "result"
  29. NUM_PASSING_TESTS_KEY = "num_passing_tests"
  30. NUM_FAILING_TESTS_KEY = "num_failing_tests"
  31. NUM_DISABLED_TESTS_KEY = "num_disabled_tests"
  32. COMMAND_ARGS_STRING = "command_args"
  33. NUM_PASSING_TEST_RUNS_KEY = "num_passing_test_runs"
  34. NUM_FAILING_TEST_RUNS_KEY = "num_failing_test_runs"
  35. NUM_EXECUTION_FAILURE_TEST_RUNS_KEY = "num_execution_failure_test_runs"
  36. NUM_TIMED_OUT_TEST_RUNS_KEY = "num_timed_out_test_runs"
  37. NUM_UNEXECUTED_TEST_RUNS_KEY = "num_unexecuted_test_runs"
  38. TOTAL_NUM_PASSING_TESTS_KEY = "total_num_passing_tests"
  39. TOTAL_NUM_FAILING_TESTS_KEY = "total_num_failing_tests"
  40. TOTAL_NUM_DISABLED_TESTS_KEY = "total_num_disabled_tests"
  41. START_TIME_KEY = "start_time"
  42. END_TIME_KEY = "end_time"
  43. DURATION_KEY = "duration"
  44. INCLUDED_TEST_RUNS_KEY = "included_test_runs"
  45. EXCLUDED_TEST_RUNS_KEY = "excluded_test_runs"
  46. NUM_INCLUDED_TEST_RUNS_KEY = "num_included_test_runs"
  47. NUM_EXCLUDED_TEST_RUNS_KEY = "num_excluded_test_runs"
  48. TOTAL_NUM_TEST_RUNS_KEY = "total_num_test_runs"
  49. PASSING_TEST_RUNS_KEY = "passing_test_runs"
  50. FAILING_TEST_RUNS_KEY = "failing_test_runs"
  51. EXECUTION_FAILURE_TEST_RUNS_KEY = "execution_failure_test_runs"
  52. TIMED_OUT_TEST_RUNS_KEY = "timed_out_test_runs"
  53. UNEXECUTED_TEST_RUNS_KEY = "unexecuted_test_runs"
  54. TOTAL_NUM_PASSING_TEST_RUNS_KEY = "total_num_passing_test_runs"
  55. TOTAL_NUM_FAILING_TEST_RUNS_KEY = "total_num_failing_test_runs"
  56. TOTAL_NUM_EXECUTION_FAILURE_TEST_RUNS_KEY = "total_num_execution_failure_test_runs"
  57. TOTAL_NUM_TIMED_OUT_TEST_RUNS_KEY = "total_num_timed_out_test_runs"
  58. TOTAL_NUM_UNEXECUTED_TEST_RUNS_KEY = "total_num_unexecuted_test_runs"
  59. SEQUENCE_TYPE_KEY = "type"
  60. IMPACT_ANALYSIS_SEQUENCE_TYPE_KEY = "impact_analysis"
  61. SAFE_IMPACT_ANALYSIS_SEQUENCE_TYPE_KEY = "safe_impact_analysis"
  62. SEED_SEQUENCE_TYPE_KEY = "seed"
  63. TEST_TARGET_TIMEOUT_KEY = "test_target_timeout"
  64. GLOBAL_TIMEOUT_KEY = "global_timeout"
  65. MAX_CONCURRENCY_KEY = "max_concurrency"
  66. SELECTED_KEY = "selected"
  67. DRAFTED_KEY = "drafted"
  68. DISCARDED_KEY = "discarded"
  69. SELECTED_TEST_RUN_REPORT_KEY = "selected_test_run_report"
  70. DISCARDED_TEST_RUN_REPORT_KEY = "discarded_test_run_report"
  71. DRAFTED_TEST_RUN_REPORT_KEY = "drafted_test_run_report"
  72. SELECTED_TEST_RUNS_KEY = "selected_test_runs"
  73. DRAFTED_TEST_RUNS_KEY = "drafted_test_runs"
  74. DISCARDED_TEST_RUNS_KEY = "discarded_test_runs"
  75. INSTRUMENTATION_KEY = "instrumentation"
  76. EFFICIENCY_KEY = "efficiency"
  77. CONFIG_KEY = "config"
  78. POLICY_KEY = "policy"
  79. CHANGE_LIST_KEY = "change_list"
  80. TEST_RUN_SELECTION_KEY = "test_run_selection"
  81. DYNAMIC_DEPENDENCY_MAP_POLICY_KEY = "dynamic_dependency_map"
  82. DYNAMIC_DEPENDENCY_MAP_POLICY_UPDATE_KEY = "update"
  83. REPORT_KEY = "report"
  84. MISMATCHED_TESTS_KEY = "mismatched_tests"
  85. MISMATCHED_TESTS_COUNT_KEY = "mismatched_tests_count"