diff --git a/CHANGELOG.md b/CHANGELOG.md index 45514d3..b016914 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 7.9.1 (2021-06-10) + +* fix compare accuracy fails if either has pending tests + ### 7.9.0 (2021-04-16) * Add chart showing simulated graph (in table) of the last 30 days of up-down connection data diff --git a/app/presenters/qa_server/check_status_presenter.rb b/app/presenters/qa_server/check_status_presenter.rb index 2f326af..a5d2c8c 100644 --- a/app/presenters/qa_server/check_status_presenter.rb +++ b/app/presenters/qa_server/check_status_presenter.rb @@ -81,6 +81,7 @@ def comparison_status_data? # @return [String] the name of the css style class to use for the status cell based on the status of the scenario test. def status_style_class(status) + return "status-#{status}" if status.is_a? Symbol status[:pending] ? "status-dogear status-#{status[:status]}" : "status-#{status[:status]}" end diff --git a/app/views/qa_server/check_status/index.html.erb b/app/views/qa_server/check_status/index.html.erb index e081fb9..1dd64de 100644 --- a/app/views/qa_server/check_status/index.html.erb +++ b/app/views/qa_server/check_status/index.html.erb @@ -151,6 +151,7 @@ <% end %> +

NOTE: Dogear means that the test is a known failure marked as pending.

<% end %> diff --git a/lib/qa_server/version.rb b/lib/qa_server/version.rb index 83434b2..d893cff 100644 --- a/lib/qa_server/version.rb +++ b/lib/qa_server/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module QaServer - VERSION = '7.9.0' + VERSION = '7.9.1' end