{% extends "results.html" %} {% macro status_class(result) -%} {%- if result.passed() -%} ag-success {%- elif result.failed() -%} ag-danger {%- else -%} ag-warning {%- endif -%} {%- endmacro %} {% block content %}

Test Results

{{ display_results(archive.results, False, True) }}
{% endblock %} {% block footer %}
{% set results = archive.results %}

Group Members

{% for student in results.team_members %} {% endfor %}
Last Name First Name ID
{{ student.last_name }} {{ student.first_name }} {{ student.student_id }}

NOTE: If you appear in multiple assignments we reserve the right to take the lower grading!

Log

All test results are based on the Jupyter notebook with checksum: {{ hash(results.checksum) }}.

{% for ap in results.applied_patches %} {% endfor %}
Title Timestamp Modifications
{{ results.title }} {{ results.timestamp }}
{{ ap[0] }} {{ ap[1] }}

{% for h in ap[2] %} {{ hash(h) }}
{% endfor %}

{{ list_artifacts(results, False) }}
{% endblock %}