Class: Ci::BuildReportResult
Constant Summary
ApplicationRecord::MAX_PLUCK
HasCheckConstraints::NOT_NULL_CHECK_PATTERN
ResetOnColumnErrors::MAX_RESET_PERIOD
Instance Method Summary
collapse
registered_models
model_name, table_name_prefix
===, cached_column_list, #create_or_load_association, declarative_enum, default_select_columns, id_in, id_not_in, iid_in, nullable_column?, pluck_primary_key, primary_key_in, #readable_by?, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, #to_ability_name, underscore, where_exists, where_not_exists, with_fast_read_statement_timeout, without_order
#reset_on_union_error, #reset_on_unknown_attribute_error
#serializable_hash
Instance Method Details
#suite_error ⇒ Object
47
48
49
|
# File 'app/models/ci/build_report_result.rb', line 47
def suite_error
tests["suite_error"]
end
|
#tests_duration ⇒ Object
27
28
29
|
# File 'app/models/ci/build_report_result.rb', line 27
def tests_duration
tests["duration"]
end
|
#tests_errored ⇒ Object
39
40
41
|
# File 'app/models/ci/build_report_result.rb', line 39
def tests_errored
tests["errored"].to_i
end
|
#tests_failed ⇒ Object
35
36
37
|
# File 'app/models/ci/build_report_result.rb', line 35
def tests_failed
tests["failed"].to_i
end
|
#tests_name ⇒ Object
23
24
25
|
# File 'app/models/ci/build_report_result.rb', line 23
def tests_name
tests["name"]
end
|
#tests_skipped ⇒ Object
43
44
45
|
# File 'app/models/ci/build_report_result.rb', line 43
def tests_skipped
tests["skipped"].to_i
end
|
#tests_success ⇒ Object
31
32
33
|
# File 'app/models/ci/build_report_result.rb', line 31
def tests_success
tests["success"].to_i
end
|