{% extends "base.html" %} {% block title %} {% if results %} Trend for project {{ project }} - {{ full_name }} - Wight v{{ version }} {% else %} Test Result for team {{ team }}, project {{ project }} and test {{ full_name }} not found - Wight v{{ version }} {% end %} {% end %} {% block contents %}
{% if results %}

{{ project }}

Trend results for {{ full_name }}

This report details the trend results for the last {{ len(results) }} bench runs for the {{ project }} project, running the {{ full_name }} test.

Apdex

apdex ranges from 0.0 to 1.0, with 1.0 being a perfect score

Pages per second

Average response time

{% for index, result in enumerate(results) %} {{ "%02d" % (index + 1) }} - Report for {{ format_date(result["created"]) }} {% end %}

Report generated at {{ report_date }} - Wight v{{ version }}

{% else %}

No trend found

We are unable to find any test result for team {{ team }}, project {{ project }}.

{% end %}
{% end %} {% block scripts %} {% if results %} {% end %} {% end %}