Artifacts
While the jupyter notebook is executed, autograde watches the current working directory for files being created or modified:
{% if results.artifacts %}-
{% for file in results.artifacts %}
{% if link %}
-
{{ file }}
{% else %}
{{ file }}
{% endif %}
{% endfor %}
All files listed above can be found in the /artifacts
directory of your results archive.
The following files have been excluded from results as they haven't changed during execution:
{% if results.artifacts %}-
{% for file in results.excluded_artifacts %}
{{ file }}
{% endfor %}