Skip to content

Commit

Permalink
Merge pull request #451 from LD4P/fix_compare_accuracy
Browse files Browse the repository at this point in the history
fix compare accuracy and release 7.9.1
elrayle authored Jun 10, 2021
2 parents 14ee26f + 0dbb975 commit e5e6cc6
Showing 4 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions app/presenters/qa_server/check_status_presenter.rb
Original file line number Diff line number Diff line change
@@ -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

1 change: 1 addition & 0 deletions app/views/qa_server/check_status/index.html.erb
Original file line number Diff line number Diff line change
@@ -151,6 +151,7 @@
</tr>
<% end %>
</table>
<p><i>NOTE: Dogear means that the test is a known failure marked as pending.</i></p>
</div>
<% end %>

2 changes: 1 addition & 1 deletion lib/qa_server/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module QaServer
VERSION = '7.9.0'
VERSION = '7.9.1'
end

0 comments on commit e5e6cc6

Please sign in to comment.