{{ run.project_name }}
{% endif %}| Feature | Scenarios | Passed | Failed | Skipped | Pass rate | Duration |
|---|---|---|---|---|---|---|
| {{ feature.name }} | {{ feature.total_scenarios }} | {{ feature.passed }} | {{ feature.failed }} | {{ feature.skipped }} | {{ (feature.pass_rate * 100) | round(1) }}% | {{ feature.duration | format_duration }} |
| Python | {{ run.environment.python_version }} |
| Behave | {{ run.environment.behave_version }} |
| Platform | {{ run.environment.platform }} |
| Hostname | {{ run.environment.hostname }} |
| Working directory | {{ run.environment.cwd }} |
| Command | {{ run.environment.command }} |
| User | {{ run.environment.user }} |
| Git branch | {{ run.environment.git_branch }} |
| Git commit | {{ run.environment.git_commit }} |
{{ feature.location }}
{% endif %} {% if feature.description %}{{ feature.description }}
{% endif %} {% if feature.tags %} {% endif %}| Total | Passed | Failed | Skipped | Undefined | Pass rate | Duration |
|---|---|---|---|---|---|---|
| {{ feature.total_scenarios }} | {{ feature.passed }} | {{ feature.failed }} | {{ feature.skipped }} | {{ feature.undefined }} | {{ (feature.pass_rate * 100) | round(1) }}% | {{ feature.duration | format_duration }} |
| Status | Step | Duration |
|---|---|---|
| {{ step.keyword.rstrip() }} {{ step.name }} | {{ step.duration | format_duration }} |
| Status | Step | Duration |
|---|---|---|
| {{ step.keyword.rstrip() }} {{ step.name }} | {{ step.duration | format_duration }} |
| Status | Step | Duration |
|---|---|---|
| {{ step.keyword.rstrip() }} {{ step.name }} | {{ step.duration | format_duration }} |
Type: {{ scenario.error.exception_type }}
{% endif %}Message: {{ scenario.error.message }}
{% if scenario.error.traceback %}Traceback:
{{ scenario.error.traceback }}
{% endif %}
{% for line in scenario_logs %}{{ line }}
{% endfor %}